View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Daniel.C Daniel.C is offline
external usenet poster
 
Posts: 43
Default Conditional formatting on charts

If dates are in column A and expenses in column B, in C1, enter the formula
:
=IF(OR(WEEKDAY(A1)=7,WEEKDAY(A1)=1),B1,NA())
in D1, enter the formula :
=IF(ISNA(C1),B1,NA())
drag down as necessary and create your chart with data from columns C and D.
--
Regards.
Daniel
"Maglez" a écrit dans le message de news:
...
On a graph that shows amount of money that I spend per day, how can I make
its markers that correspond to weekend on a different colour?

I would like to do this automatically and no manually as I am doing now.

Thanks.