pdfname

Copper Contributor

Can I use more than one cell to define a pdfname range?  ie. ("A2:A3")  I have a macro to print a PDF to a select folder, but I would like the file name to contain the content from two cells.  Right now it works well using one cell ("A3").  { PDFname = Range ("A3") .Value }   I need  to use "A2" and "A3".  Is this possible?

1 Reply

@KEN_Johnson 

That could be as easy as:

PDFNname = Range("A2") & Range("A3")