M
MWH
If cell A2 > A1 I would like to show an up arrow next to the value, and visa
versa...
versa...
Charles T. Garrett said:=IF(A1>A2,"?","?")
? alt+25
? alt+24
Norman Jones said:Hi MWH,
Try the following two-pronged approach:
(1) In B2: =If(A2>A1, "p","q") Format with Windings3 font.
(2) Set conditional formats for the three possible cases:
=A1>A2 | Font: Bold Red
=A1<A2 | Font: Bold Green
=A1 =A2 | Font: Normal White
Norman Jones said:Hi MWH,
Try the following two-pronged approach:
(1) In B2: =If(A2>A1, "p","q") Format with Windings3 font.
(2) Set conditional formats for the three possible cases:
=A1>A2 | Font: Bold Red
=A1<A2 | Font: Bold Green
=A1 =A2 | Font: Normal White
MWH said:One more question if A2 = A1, i don't want an arrow to show, right now I
always get a down arrow
MWH said:One more question if A2 = A1, i don't want an arrow to show, right now I
always get a down arrow
(2) Set conditional formats for the three possible cases:
=A1>A2 | Font: Bold Red
=A1<A2 | Font: Bold Green
=A1 =A2 | Font: Normal White
I know this off topic but I read with interest on conditional
formatting. How do you go abouts setting the condtion? I went to
Edit->Go To->Special.
Ok, Just one more questionis there a way to concatenate this
formula?=SUM(daily_Totals!F6) and your formula
=IF(F8=E8,"",IF(F8>E8,"p","q")
Lets pretend the cell that contains "SUM(daily_Totals!F6)" is B1,I want it
to look at A1 to compare the values for the up/down arrows
MWH wants to dsiplay the arrow in the same cell as the result
I don't want to use a separate cell for the arrow, as I'll
have many columns of data over a long period of time.