up vote 1 down vote favorite
1
share [g+] share [fb]

In excel 2007, I have a formula in a cell like the following:

=COUNTIFS('2008-10-31'!$C:$C;">="&'$A7)

Now I want to make the name of the sheet ('2008-10-31') be dependent on the value of some cell (say A1). Something like:

=COUNTIFS(A1!$C:$C;">="&'$A7) // error

Is there is way to do this? Or do I have to write a VBA-Macro for it?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

INDIRECT does what you want. Note that if the sheet name has any spaces, you need to put single quotes round it, ie

=COUNTIFS(INDIRECT("'" & A1 & "'!$C:$C"); ">=" & $A7)
link|improve this answer
Not only when it has spaces, but also other special characters like '-' – mr_georg Nov 3 '08 at 10:20
That's true. I didn't think of that. +1 – Tomalak Nov 4 '08 at 7:40
feedback

You are looking for the INDIRECT worksheet function:

=INDIRECT("SHEET2!A1")
=COUNTIFS(INDIRECT(A1 & "!$C:$C"); ">=" & $A7)

The function turns a string into a real cell reference.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.