Carla carla
Board Regular
- Joined
- Oct 29, 2022
- Messages
- 53
- Office Version
- 365
- Platform
- Windows
Hello, I need help on saving my drop down list to individual pdf file with file name.
Hello, it worked for me! Thank you but one more thing how to they set the name of the file?More details are required to help you. What type of the drop down is it? Where should the PDF files be saved (folder)?
See if you can adapt this code, which is for a data validation drop down.
cycle through data validation list to print to pdf and save as cell text
Hi, I have: - worksheet name("test1") - data validation list in "A" - print range is first page of worksheet or A1: I45 looking if there's a way to have macro that cycles through the data validation list and prints a PDF with the name of the text in that cell and loop through so every item of...www.mrexcel.com
The file name is the current Data Validation cell value, as it loops through each Data Validation value, set by this part of the code:how to they set the name of the file?
Filename:=destinationFolder & dvValueCell.Value & ".pdf"
The file name is the current Data Validation cell value, as it loops through each Data Validation value, set by this part of the code:
VBA Code:Filename:=destinationFolder & dvValueCell.Value & ".pdf"