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.
- cell value= x
black format. - cell value= ol
blue format. - formula=and(b6 <=today()-30, b6 >today()-45)
yellow format. - formula=b6<=today()-45
red format - 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.
you can use
=""
as condition 'blank' cell contains formula. alternatively change condition red be
and(b6<=today()-45, b6>0)
that might help
Comments
Post a Comment