Format of Row in VBA based on 1stCell and also Compare to above row?

-1

I was wondering how would i through VBA conditionally format the whole row or a row in a range based on the first cell in that row? Also it would require a comparison to the previous row to current row (first cell value) and format it as per its results? I know how to do it with cells but rows in a range has me stumped. Also i already have a search criteria within conditional formatthing.

d1g1t4Lnrg

Posted 2014-03-24T20:57:44.337

Reputation: 1

Answers

1

You know how to do it will cells in a range, you just append the .entirerow to the end of the range e.g.-

Cells(1,1).EntireRow.Interior.Color = 6

Raystafarian

Posted 2014-03-24T20:57:44.337

Reputation: 20 384