当前位置:网站首页>Live delivery form template - automatically display pictures - automatically associate series products
Live delivery form template - automatically display pictures - automatically associate series products
2022-04-23 05:00:00 【Excel_ VBA table จ๊บ】
During live broadcast, you can directly select the category , Automatically bring out all products of this series , And automatically associate the picture of the corresponding field
Category database data format =========================================================
Commodity price database format =========================================================
Not done VBA Macro save order
A101 Common declaration VBE The first level directory name of the menu
A101001 Force declaration of variables Option Explicit ' Force declaration of all variables within the module
A101002 Module private Option Private Module ' Mark module as private , Only useful for other modules in the same project , Don't show in macro dialog
A101003 Strings are not case sensitive Option Compare Text ' Strings are not case sensitive
A101004 The minimum subscript of the array is 1 Option Base 1 ' Specifies that the first subscript of the array is 1
A101005 Ignore mistakes On Error Resume Next ' Ignore the error and continue VBA Code , Avoid error messages
A101006 Wrong jump On Error GoTo ErrorHandler ' Jump to a position in the process when an error occurs
A101007 Recovery error prompt On Error GoTo 0 ' Return to normal error prompt
A101008 No pop ups Application.DisplayAlerts=False ' During the execution of the program, the warning box will not be displayed
A101009 Screen refresh Application.ScreenUpdating=False ' Turn off screen refresh Application.ScreenUpdating=True ' Open screen refresh
A101010 Disable shortcut key interrupt Application.Enable.CancelKey=xlDisabled ' Ban Ctrl+Break Stop macro function
A101011 New workbook "dim wb as workbook
set wb=Workbooks.Add() ' Create a new workbook "
A101012 Activate Workbook Workbooks("book1.xls").Activate ' The activation name is book1 The workbook for
A101013 Save workbook ThisWorkbook.Save ' Save workbook
A101014 Close workbook ThisWorkbook.close ' Close the current workbook
A101015 Number of worksheets ActiveWorkbook.Sheets.Count ' Get the number of sheets in the active workbook
A101016 Name of the workbook "ActiveWorkbook.name ' Returns the name of the active workbook
ThisWorkbook.Name ' Returns the current workbook name
ThisWorkbook.FullName ' Returns the current workbook path and name "
A102 file ActiveWindow.EnableResize=False ' Disable resizing the active workbook
A102001 Traverse a folder Application.Window.Arrange xlArrangeStyleTiled ' Arrange workbooks as tiles
A102002 Traverse all files and folders under the folder ActiveWorkbook.WindowState=xlMaximized ' Maximize the current workbook
A101017 The dictionary States Set dic=CreateObject("scripting.dictionary")
A102003 Get the last line "lastrow = Sheet1.Cells(Sheet1.Rows.Count, 1).End(xlUp).Row ' Get the last line "
版权声明
本文为[Excel_ VBA table จ๊บ]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230456553868.html
边栏推荐
- Download PDF from HowNet (I don't want to use CAJViewer anymore!!!)
- Learning Android from scratch -- Introduction
- Innovation training (XII) reptile
- [database] MySQL basic operation (basic operation ~)
- Mac 进入mysql终端命令
- Painless upgrade of pixel series
- Introduction to raspberry pie 3B - system installation
- SCP command details
- Excel uses the functions of replacement, sorting and filling to comprehensively sort out financial data
- Gets all dates between two times
猜你喜欢
View analysis of scenic spots in ArcGIS
Independent station operation | Facebook marketing artifact - chat robot manychat
Innovation training (IX) integration
AQS源码阅读
Innovation training (V) configuration information
解决ValueError: Argument must be a dense tensor: 0 - got shape [198602], but wanted [198602, 16].
Customize the navigation bar at the top of wechat applet (adaptive wechat capsule button, flex layout)
Use the built-in function of win to transfer files between two computers in the same LAN (the speed is the same as that between local disks)
POI export message list (including pictures)
[database] MySQL single table query
随机推荐
Manually write smart pointer shared_ PTR function
Deep learning notes - fine tuning
Detailed explanation of hregionserver
Details related to fingerprint payment
Set Chrome browser background to eye protection (eye escort / darkreader plug-in)
静态流水线和动态流水线的区别认识
Harmonious dormitory (linear DP / interval DP)
Painless upgrade of pixel series
How to exit VIM
Progress of innovation training (III)
scp命令详解
JS détermine si la chaîne de nombres contient des caractères
【数据库】MySQL多表查询(一)
JS determines whether the numeric string contains characters
Informatics Olympiad 1955: [11noip popularization group] Swiss round | openjudge 4.1 4363: Swiss round | Luogu p1309 [noip2011 popularization group] Swiss round
MySQL -- execution process and principle of a statement
JS generates a specified number of characters according to some words
Unity C# 网络学习(四)
[WinUI3]编写一个仿Explorer文件管理器
redis数据类型有哪些