code for a sheet name

dennisli

Well-known Member
Joined
Feb 20, 2004
Messages
1,070
Good afternoon,
The first code got the value 2012. And I want to use this value 2012 to refer an existing sheet named 2012 to get its last row.
But it did not work.
Appreciate your help.
DL
Code:
CurrentYear = Year(Worksheets("Data").Cells(5, 1))
CYSheet = Worksheets(CurrentYear).Name
CYLastRow = Worksheets(CYSheet).Cells(Rows.Count, 1).End(xlUp).Row
 

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.
Can you define "Did not work" ??
Did you get an error? What error?
Did you get the wrong result? What result DID you get, and What result did you expect?

My 'Guess' is that the CurrentYear variable is a NUMERIC value
When you use Sheets(somenumber) it's looking for a sheet with that INDEX #.
So it would be looking for the 2 thousand 12th Sheet in the book, not a sheet 'Named' 2012.

try adding this at the top of your code

Dim CurrentYear As String
 
Upvote 0

Forum statistics

Threads
1,214,829
Messages
6,121,826
Members
449,051
Latest member
excelquestion515

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