I've searched on the internet and haven't been able to find a solution that fits my needs. I would like to rename a worksheet based on part of 2 cell values.
Cell B2 value = 4/1/2024 and is formatted as MMM-YY
Cell B26 value = 2/1/2024 and is formatted as MMM-YY
When I update cell B2 to 5/1/2024, cell B26 will automatically update to 3/1/2024. I would like for the worksheet to be renamed 03.24 - 05.24. I can get by with 3.24 - 5.24 if needed.
My initial thought was to somehow incorporate Left(B2,2); but that won't work because the value is a single digit. Now I'm thinking some sort of split at the /, but I'm not positive.
Cell B2 value = 4/1/2024 and is formatted as MMM-YY
Cell B26 value = 2/1/2024 and is formatted as MMM-YY
When I update cell B2 to 5/1/2024, cell B26 will automatically update to 3/1/2024. I would like for the worksheet to be renamed 03.24 - 05.24. I can get by with 3.24 - 5.24 if needed.
My initial thought was to somehow incorporate Left(B2,2); but that won't work because the value is a single digit. Now I'm thinking some sort of split at the /, but I'm not positive.