View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max Max is offline
external usenet poster
 
Posts: 9,221
Default Apply Conditional formating to all cell

Select the range eg select J14:J626 (with J14 active),
then apply CF using Formula is:
=AND(ISNUMBER($J14),$J14-TODAY()<=60)

The ISNUMBER is an additional check to ensure that blank cells in col J (if
any) do not spuriously trigger the CF. Note that you could actually select
any corresponding range to be conditionally formatted dependent on the dates
in col J, eg you could select say A14:E626 (with A14 active), then apply the
above CF "as-is".
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:27,000 Files:200 Subscribers:70
xdemechanik
---
"Kanmi" wrote:
Good morning. Please Using following formula in conditional formatting window:-
=IF($J$14-TODAY()<=60,"True","False") and i want to apply to the whole cell.
I mean not only J14 BUT from J14 : J626. Please how can i re-write the
formular. thanks.