Feb 10 2024 07:04 PM - edited Feb 10 2024 07:05 PM
Often, we use something like =Current!A1 to retrieve data from tab name Current and print on Summary tab. How can we use "Current" from Cell? Thanks.
Feb 10 2024 08:59 PM
SolutionOn the Summary tab, you could use the following formula as an example:
=INDEX(INDIRECT("'" & A1 & "'!A1"), 1, 1)
=INDIRECT("'" & A1 & "'!A1")
Both the INDIRECT and INDEX/MATCH approaches achieve the same result, allowing you to reference cells dynamically based on the tab name specified in another cell. Choose the one that you find more convenient or suitable for your specific use case.
Feb 11 2024 09:33 PM
Thank you for help. I appreciate it very much. @NikolinoDE
Feb 10 2024 08:59 PM
SolutionOn the Summary tab, you could use the following formula as an example:
=INDEX(INDIRECT("'" & A1 & "'!A1"), 1, 1)
=INDIRECT("'" & A1 & "'!A1")
Both the INDIRECT and INDEX/MATCH approaches achieve the same result, allowing you to reference cells dynamically based on the tab name specified in another cell. Choose the one that you find more convenient or suitable for your specific use case.