Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
"X-No-Archive: yes"
In cell E1, I have the formula =COUNTIF($A1:$C20,$D$1)5 If I enter new data in A:C the cell references in the formula change. I will be autofilling the formula in column E, so the relative references $A1:$C20 will have to change. ie Cell E2 =COUNTIF($A2:$C21,$D$1)5 How do I use INDIRECT or an alternative function so that the cell references do not change when entering data. The simplest formula adaptation please, since I will be using the methodology in numerous complex/nested formulas. Thanks |
#2
![]() |
|||
|
|||
![]()
To lock A1:C20 using indirect you can use
=COUNTIF(INDIRECT("$A1:$C20"),$D$1)5 Regards, Peo Sjoblom " wrote: "X-No-Archive: yes" In cell E1, I have the formula =COUNTIF($A1:$C20,$D$1)5 If I enter new data in A:C the cell references in the formula change. I will be autofilling the formula in column E, so the relative references $A1:$C20 will have to change. ie Cell E2 =COUNTIF($A2:$C21,$D$1)5 How do I use INDIRECT or an alternative function so that the cell references do not change when entering data. The simplest formula adaptation please, since I will be using the methodology in numerous complex/nested formulas. Thanks |
#3
![]() |
|||
|
|||
![]()
for E1, replace your $A1:$c20 reference with
OFFSET(D1,0,-3,20,3) & copy it down " wrote: "X-No-Archive: yes" In cell E1, I have the formula =COUNTIF($A1:$C20,$D$1)5 If I enter new data in A:C the cell references in the formula change. I will be autofilling the formula in column E, so the relative references $A1:$C20 will have to change. ie Cell E2 =COUNTIF($A2:$C21,$D$1)5 How do I use INDIRECT or an alternative function so that the cell references do not change when entering data. The simplest formula adaptation please, since I will be using the methodology in numerous complex/nested formulas. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
need to clear data references in pivot table report | Charts and Charting in Excel | |||
When entering data into excel spreadsheet cell, the page just jum. | Excel Discussion (Misc queries) | |||
Using a Text / Data output as a cell reference | Excel Discussion (Misc queries) | |||
Combining data (numeric format) in multiple cells into one cell (t | Excel Discussion (Misc queries) | |||
Retrieve last cell with data | Excel Worksheet Functions |