snuffnchess
Board Regular
- Joined
- May 15, 2015
- Messages
- 71
- Office Version
- 365
- Platform
- Windows
I am currently using the following formula to apply conditional formatting to rows in a dataset
And having it apply to
Row 203 is currently the last row of data - but I want to make it so that if somebody adds/removes a row that the formatting applies to to that last row of data.
I Have tried creating a named rng that would calculate the last row of data - but when i click "apply" in conditional formatting, it just updates to a straight formula and removes the formula and saves it as a fixed range.
Tried stuff like
where MLR =
I even tried creating a named range for the entire table (called mrng) with
, but every time i click "apply" it just goes back to a fixed range.
How does one do this??
Excel Formula:
=MOD(ROW(),2)=1
And having it apply to
Excel Formula:
=$A$2:$H$203
Row 203 is currently the last row of data - but I want to make it so that if somebody adds/removes a row that the formatting applies to to that last row of data.
I Have tried creating a named rng that would calculate the last row of data - but when i click "apply" in conditional formatting, it just updates to a straight formula and removes the formula and saves it as a fixed range.
Tried stuff like
Excel Formula:
=$A$2:INDEX($G:$G, MLR)
Excel Formula:
=COUNTA(Monthly!$A:$A)
I even tried creating a named range for the entire table (called mrng) with
Excel Formula:
=OFFSET(Monthly!$A$2,0,0,COUNTA(Monthly!$A:$A),8)
How does one do this??