Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How can I change the cell ref of a formula to one that is stored in another
cell? e.g. I want to do a COUNTIF(B1:B*x*,"0") where the value of *x* has been manually input in A1 TIA Craig |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Craig,
Use the INDIRECT function to convert a text string in to an actual range address: =COUNTIF(INDIRECT("B1:B"&A1),"0") -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Craig" wrote in message ... How can I change the cell ref of a formula to one that is stored in another cell? e.g. I want to do a COUNTIF(B1:B*x*,"0") where the value of *x* has been manually input in A1 TIA Craig |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try with
=COUNTIF(B1:INDEX(B:B, A1); "0") -- Regards, Juan Pablo González "Craig" wrote in message ... How can I change the cell ref of a formula to one that is stored in another cell? e.g. I want to do a COUNTIF(B1:B*x*,"0") where the value of *x* has been manually input in A1 TIA Craig |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
auto-hide rows, cell format (# and @), update cell refs, shade cel | Excel Discussion (Misc queries) | |||
returning absolute cell refs | Excel Discussion (Misc queries) | |||
Why would a pasted formula not calculate the new cell refs? | Excel Worksheet Functions | |||
Vlookup refs a cell that has a worksheet name | Excel Worksheet Functions | |||
How do I fix cell refs when adding rows | Excel Discussion (Misc queries) |