Excel Formula to Google Docs formatting -


i have come here seeking of smarter programers. attempting create date controlled document work. in short, created formulas contact dates. linked today() function computer date. contacted < 30 days appears green, >30 <45 days yellow , >45 days red. included other functions x= black (remove list) , ol = onlist appear blue. used conditional formatting options. show formulas run b6 b144 (=$b$6:$b$144) in spreadsheet , order.

  1. cell value= x
    black format.
  2. cell value= ol
    blue format.
  3. formula=and(b6 <=today()-30, b6 >today()-45)
    yellow format.
  4. formula=b6<=today()-45
    red format
  5. formula=b6 > today()-30
    green format.

the problem trying cells without date show blank , not red. reason blank cells appear red. have tried use formula=isblank(b6) format no fill cell. cell not empty contains above formulas. surely there code make cells without texts formulas appear blank. excel shows clear when upload google documents, empty cells appear red. appreciated.

enter image description here

you can use

="" 

as condition 'blank' cell contains formula. alternatively change condition red be

and(b6<=today()-45, b6>0) 

that might help


Comments

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -