Conditional Formatting using VBA
Hi I want to write a Macro that will compare data from two cells and then format accordingly.
I don't want to manually set each cell with conditional format because the #of data differs each day, and there are close to 600 values.
I have data in Column B and C everyday, so I want to use something like check the lastrow with value in it.
The Condtional Formatting will go like this
Data starts with cell B3:
For cell B4
If B4>B3, format interior blue
If B4<B3, yellow
If B4=B3, no color
Then it moves on to the next cell B5:
If B5>B4, format interior blue
If B5<B4, yellow
If B5=B4, no color
Then it keeps on doing it until the last cell in the column.