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

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
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,825
Messages
6,121,787
Members
449,049
Latest member
greyangel23

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