I have the sheet name in Cell W1 using the formula
I would like to amend my macro code below to refere to cell W2 instead of having to type on the sheet name
It would be appreciated if someone could kindly amend this code
Code:
=MID(CELL("filename",A1),FIND("]",CELL("filename",A1))+1,255)
I have a formula in W2 to put the sheet name in quotation marks
=""""&W1&"""" resulting in "Forms outstanding"
I would like to amend my macro code below to refere to cell W2 instead of having to type on the sheet name
Code:
Sheets("Forms Outstanding").Copy
It would be appreciated if someone could kindly amend this code