如何在Excel的下拉列表中打印所有選項?
您是否曾經嘗試在Excel工作表的下拉列表中打印所有選項? 本文討論的是將下拉列表中的所有選項打印到Excel中的單獨打印輸出中。
使用VBA代碼在下拉列表上打印所有選項
以下VBA代碼可以幫助您在工作表的下拉列表中打印所有選項。 請執行以下操作。
1。 按 其他 + F11 鍵打開 Microsoft Visual Basic for Applications 窗口。
2。 在裡面 Microsoft Visual Basic for Applications 窗口,請點擊 插入 > 模塊。 然後將以下VBA代碼複製到“模塊”窗口中。 看截圖:
VBA代碼:將指定下拉列表中的所有選項打印到單獨的打印輸出中
Sub Iterate_Through_data_Validation()
Dim xRg As Range
Dim xCell As Range
Dim xRgVList As Range
Set xRg = Worksheets("Sheet1").Range("B8")
Set xRgVList = Evaluate(xRg.Validation.Formula1)
For Each xCell In xRgVList
xRg = xCell.Value
ActiveSheet.PrintOut
Next
End Sub
Note: In the code, Sheet1 is the worksheet name which contains the drop-down list you want to print. And B8 is the cell contains the drop-down list. Please replace them with your needed.
3. Press the F5 key to run the code.
Then all options in the specified drop-down list in a certain worksheet are printed out separately.
Easily print specified pages in current worksheet in Excel:
With the Print Specific Pages utility of Kutools for Excel, you can easily print specified pages in current worksheet such as print all odd pages, all even pages, print just current page, as well as print custom page range as below screenshot shown.
Download and try it now! (30-day free trail)

Related Articles:
- How to auto populate other cells when selecting values in Excel drop down list?
- How to autocomplete when typing in Excel drop down list?
- How to create a drop down list calendar in Excel?
- How to create a searchable drop down list in Excel?
- How to create drop down list with multiple selections or values in Excel?
The Best Office Productivity Tools
Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%
- Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
- Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
- Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
- Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
- Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
- Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
- Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
- Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
- More than 300 powerful features. Supports Office / Excel 2007-2021 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Sort comments by
#24951
This comment was minimized by the moderator on the site
0
0
#30377
This comment was minimized by the moderator on the site
0
0
#30378
This comment was minimized by the moderator on the site
Report
0
0
#30379
This comment was minimized by the moderator on the site
0
0
#30742
This comment was minimized by the moderator on the site
Report
0
0
#30743
This comment was minimized by the moderator on the site
Report
0
0
#31667
This comment was minimized by the moderator on the site
0
0
#31668
This comment was minimized by the moderator on the site
Report
0
0
#35274
This comment was minimized by the moderator on the site
0
0
#35275
This comment was minimized by the moderator on the site
Report
0
0
#35276
This comment was minimized by the moderator on the site
Report
0
0
#35277
This comment was minimized by the moderator on the site
0
0
#35278
This comment was minimized by the moderator on the site
Report
0
0
#36833
This comment was minimized by the moderator on the site
Report
0
0
#37215
This comment was minimized by the moderator on the site
0
0
There are no comments posted here yet