Dynamic drop down list using VBA and then copy data to another workbook

Exceldud

New Member
Joined
Jan 30, 2022
Messages
7
Office Version
  1. 2016
Platform
  1. Windows
I am new to this forum as well as new to VBA - so please be gentle :)

I have two workbooks (RawData and Dashboard). In RawData workbook, the data is in the RawSales worksheet. I want to see if it is possible to do the following using macros:
1. Create a dynamic drop downlist for unique customers (Column B)
2. User selects one of the customers from the list and then the macro copies all the relevant rows to the Dashboard.xlsm workbook and puts them in SalesOrder worksheet. The macro renames the file (CustomerName_Dashboard_TodayDate.xlsm) and saves the Dashboard in the same folder. The macro closes the RawData workbook and leaves the new Dashboard file open.

Any help would be appreciated.
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
So, basically, you are saying that you've achieved no progress on this - tried nothing - attempted nothing - is that right?
 
Upvote 0
Hi Glenn,

Some progress has been made since my posting. I have created a macro that seems to be working fine for moving filtered data to another workbook and naming the worksheet according to the variable that I had selected. This only piece of code that I could not figure out was how to create a dynamic drop down list. For now I have down a manual workaround where I have manually created a drop down list. From the list I can select the Customer Name value (In my case from cell H6)

Sub moveData()
Application.ScreenUpdating = False
Dim x As Range
Dim rng As Range
Dim last As Long
Dim sht, shtButtons, CustName, PathOnly, destSht, newFile As String
Dim newBook As Excel.Workbook
Dim Workbk As Excel.Workbook


PathOnly = ThisWorkbook.Path
newFile = "SalesDashboard.xlsm"

'Specify sheet name in which the data is stored
sht = "Sales"
shtButton = "Buttons"

'Specify destination sheet name
destSht = "SalesOrder"

Set newBook = Workbooks.Open(PathOnly & "\" & newFile)
newBook.Activate
newBook.Worksheets(destSht).Activate
Selection.Delete Shift:=xlUp

'Workbook where VBA code resides
Set Workbk = ThisWorkbook
Workbk.Activate

With Workbk.Sheets(shtButton)
Set x = .Range("H6")
End With

'Filter based on Customer Name in Column B
last = Workbk.Sheets(sht).Cells(Rows.Count, "B").End(xlUp).Row

With Workbk.Sheets(sht)
Set rng = .Range("A1:T" & last)
End With

With rng
.AutoFilter
.AutoFilter Field:=2, Criteria1:=x.Value
.SpecialCells(xlCellTypeVisible).Copy
newBook.Activate
newBook.Worksheets(destSht).Activate
Worksheets(destSht).Range("A1").Select
ActiveSheet.Paste
End With

ActiveWorkbook.SaveAs Filename:=(PathOnly & "\" & x & "_Dashboard_" & Format(Now(), "DD-MMM-YYYY hh mm AMPM") & ".xlsm")


' Turn off filter
Workbk.Sheets(sht).AutoFilterMode = False

With Application
.CutCopyMode = False
.ScreenUpdating = True
End With
End Sub
 
Upvote 0
You don't need VBA to create a dropdown list of unique customer names. The following demonstrates how it can be done - you'll just need to adjust the range references in the formulas to suit your actual layout.

Book1
ABCDE
1Customer ListUnique ListDropdown
2A. CustomerA. CustomerA. Customer
3A. CustomerB. Customer
4A. CustomerC. Customer
5B. CustomerD. Customer
6B. CustomerE. Customer
7B. Customer
8C. Customer
9C. Customer
10A. Customer
11A. Customer
12A. Customer
13D. Customer
14E. Customer
Sheet1
Cell Formulas
RangeFormula
C2:C6C2=UNIQUE(FILTER(A2:A30,A2:A30<>""))
Dynamic array formulas.
Cells with Data Validation
CellAllowCriteria
E2List=C2#
 
Upvote 0
In your example, can UNIQUE reference another worksheet. For example,
=unique(filter(Sales!B2:B10000, Sales!B2:B10000<>""))

I get an error (That function isn't valid). The reason why I want the drop down on another worksheet is that the data from Sales worksheet is completely cleared before my other macros run.
 
Upvote 0
In your example, can UNIQUE reference another worksheet. For example,
=unique(filter(Sales!B2:B10000, Sales!B2:B10000<>""))

I get an error (That function isn't valid). The reason why I want the drop down on another worksheet is that the data from Sales worksheet is completely cleared before my other macros run.
Sorry, I should have looked at the Office version you have before posting.
 
Upvote 0
So Unique works only with 365? Any solution with 2016 Excel ?
 
Upvote 0
To get a unique list you can run an Advanced Filter to another location, specifying unique output only.
 
Upvote 0

Forum statistics

Threads
1,214,965
Messages
6,122,496
Members
449,089
Latest member
Raviguru

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top