Forum Discussion
Kpavey
Aug 24, 2021Copper Contributor
SUMIF INDIRECT #REF Error
Hi, I am currently struggling with performing a SUMIF INDIRECT formula as can be seen in the below linked youtube video: https://www.youtube.com/watch?v=OM4MAaQ4oN0 My aim is to sum the tota...
- Aug 24, 2021
Kpavey Include single quotes around the sheet names. Needed since these contain a special character.
=INDIRECT("'" & $B$3 & "'!B:B") or change the content of cell B3 to '1293-103'
That should work.
Riny_van_Eekelen
Aug 24, 2021Platinum Contributor
Kpavey Include single quotes around the sheet names. Needed since these contain a special character.
=INDIRECT("'" & $B$3 & "'!B:B") or change the content of cell B3 to '1293-103'
That should work.
- KpaveyAug 24, 2021Copper ContributorPerfect, that's helped a lot thanks very much!