Al,
You can use conditional formatting for this task.
Select all rows from B to F.
Activate Format|Conditional Formatting.
Select "Formula Is" for Condition 1 in the Conditional Formatting window and enter the following formula:
=B1=SMALL($B1:$F1,1)
Activate Format and choose a color for the lowest price via the Patterns tab.
Don't leave the window.
Activate Add. Enter the following formula for the next lowest price:
=B1=SMALL($B1:$E1,2)
Select the color for the next lowest price via Format.
Aladin
==========
The first two work fine but I can not get the third one to work using =B1=SMALL($B1:$D1,3) Am I doing something wrong or will it not do three?
> The first two work fine but I can not get the third one to work using =B1=SMALL($B1:$D1,3) Am I doing something wrong or will it not do three?
Three conditions constitute indeed the maximum.
If you want more than 3 colors, you'll need VBA.
That you didn't get the 3rd condition to work is strange.
Select your whole range and try to define 3 conditions all at once.
Aladin