Quick Question - Referencing cell value from another workbook

Jameo

Active Member
Joined
Apr 14, 2011
Messages
270
Just a quickie guys,

If I want to reference a cell in another workbook (and it is currently open) I could use

Workbooks("Book2).Sheets("Sheet1").Cells(1,1).value


Similarily I could use

dim sht as Worksheet

set sht = Worksheets("Sheet1")

Workbooks("Book2").sht.cells(1,1).Value


However, why can I not use:

Dim wb as Workbook
Dim sht as Worksheet

Set wb = Workbooks("Book1")
Set sht = Worksheets("Sheet1")

wb.sht.cells(1,1).value

Why the hell does that not work? Lol
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Perhaps

Rich (BB code):
Set sht = wb.Worksheets("Sheet1")
x=sht.Cells(1,1).Value
 
Upvote 0
Your second example will not work, as it happens, for the same reason the third one doesn't - the sht variable is not a property of the wb workbook. Your third one ought to be:

Code:
Dim wb as Workbook
Dim sht as Worksheet

Set wb = Workbooks("Book1")
Set sht = wb.Worksheets("Sheet1")

sht.cells(1,1).value = "something"
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,289
Members
452,902
Latest member
Knuddeluff

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