Pick Up Sheet Name From Cell Value

MrData

Active Member
Joined
May 4, 2003
Messages
324
I want to pick up the sheetname from cell Z14 of a sheet called Summary.

This is my original code

Set Found = Sheets("Sheet11").Range("A4:A85").Find(what:=.Range("E2").Value, lookat:=xlWhole, LookIn:=xlValues)

I tried replacing ("Sheet11") with this but I don't seem to have it working correctly

Set Found = Sheets(Sheets("Summary").Range("Z14").Value).Range("A4:A85").Find(what:=.Range("E2").Value, lookat:=xlWhole, LookIn:=xlValues)

Can anyone assist?
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
you're sure Z14 contains Sheet11, spelled just like this, w/o any spaces?

also, you have an extra period in what:=

what:=. - this one

did you mean to have a sheet name there too?
 
Upvote 0

Forum statistics

Threads
1,214,925
Messages
6,122,303
Members
449,078
Latest member
nonnakkong

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