Convert a text string to a linked value

froggygremblin

New Member
Joined
Oct 10, 2018
Messages
3
[h=1]I have a report that links data from other worksheets. The names of these worksheets change annually, for example "2018 Jobs Planner 2.0.xlsm", will become "2019 Jobs Planner 2.0.xlsm" next year.[/h]
I am trying to calculate the name of the worksheet for the current year so it does not need to be re-linked each year. I tried to concatenate the year using the "&" operator in this formula


="'C:\Documents\7Oaks\["&TEXT(TODAY(),"YYYY")&" Jobs Planner 2.0.xlsm]Work in Progress'!$C$5"

but of course it just produces this text string

'C:\Documents\7Oaks\[2018 Jobs Planner 2.0.xlsm]Work in Progress'!$C$5.

How can I convert this so it's an actual link to the data in this years workbook cell $C$5?


Thank you for your help
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Welcome to the Board!

Try:

=HYPERLINK("[C:\Documents\7Oaks"&TEXT(TODAY(),"YYYY")&" Jobs Planner 2.0.xlsm]'Work in Progress'!$C$5","This year's total")
 
Upvote 0

Forum statistics

Threads
1,223,894
Messages
6,175,254
Members
452,623
Latest member
Techenthusiast

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