My problem is about programming in excel (create a formula for conditional formatting rule).
If i use the following formula in my format condition formula:
=INDIRECT("A"&ROW())>1
And apply on all rows include first row with following range in Apply to
field:
$A:$F
Result: It works well.
But i want apply it to all rows except first row. So i changed it to:
=AND(INDIRECT("A"&ROW())>1;ROW()>1)
Result: Now it did not work on any row.
What is my mistake in the above formula?