Using cell value to define Sheets(Array)

gmedalla999

New Member
Joined
Apr 23, 2016
Messages
8
Hello I need help on my macro - it doesnt seem to work. I need to define Array of Sheets based on cell value from A1. thank you very much in advance

'Part of the Code


A = Activesheet.Range("a1").Value

'where Range ("A1") contains the name of Sheets to be chosen e.g. "P001", "P002", "P003"


Sheets(Array(A)).Select
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Try this.
Code:
A = Replace(Replace(ActiveSheet.Range("a1").Value, """", ""), " ", "")

'where Range ("A1") contains the name of Sheets to be chosen e.g. "P001", "P002", "P003"

Sheets(Split(A, ",")).Select
 
Upvote 0
Try this.
Code:
A = Replace(Replace(ActiveSheet.Range("a1").Value, """", ""), " ", "")

'where Range ("A1") contains the name of Sheets to be chosen e.g. "P001", "P002", "P003"

Sheets(Split(A, ",")).Select


Hello Norie,

Thank you for the prompt response - I found an alternative solution to my problem. thank you again though
 
Upvote 0

Forum statistics

Threads
1,216,571
Messages
6,131,480
Members
449,652
Latest member
ylsteve

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