Not to hijack your thread but your issue is fixed, and I also have an excel problem and this saves creating a new thread-
I have a header sheet that does a summary of all the other sheets, and I'm looking for a dynamic way to grab the sheet name via the contents of a cell on the header sheet:
Code
a | b
name1 | =if(=IF('name1'!F6="Completed", "x", "")
works, however I want it to be dynamic in the sense that column a is a varying value.
Code
a | b
name1 | =if(=IF('A1'!F6="Completed", "x", "")
is essentially what I want to happen, however I know that doesn't work. What I currently have is:
Code
=IF(INDIRECT("HEADER!A1")="Completed", "x", "n")
which also works, but I cannot get it to reference the cell !F6 within the INDIRECT result, it just won't work in any syntax I try.
This is theoretically what I think would make it work, but it doesn't work.Code
=IF(INDIRECT("HEADER!A1")!F6="Completed", "x", "n")
Any ideas?