I would like to conditionally format the first instance in a column where the value matches the criteria (in the example below >= 1000000).
Here is an example spreadsheet:
CodePudding user response:
try:
=(INDEX(COUNTIFS(IF(A$2:A>=1000000, 1), IF(A2>=1000000, 1),
ROW(A$2:A), "<="&ROW(A2)))=1)*(A2>=1000000)