如果第一列值为日期,如何突出显示 google 电子表格中的行?
How to highlight the rows in google spreadsheet if the first column value is date?
我对 google spreadsheet 很陌生,并且尝试使用 conditional Formatting
仅在第一列值为日期时突出显示行。
- 分享publicgoogle传播sheet:https://docs.google.com/spreadsheets/d/10NzbtJhQj4hQBnZXcmwise3bLBIAWrE0qwSus_bz7a0/edit#gid=1405439211
我的尝试
=not (isblank($A4))
// This is not working.
// But A4 is not fixed, on a new day if I insert some rows, $A4 might be $A5 and it may not work.
例子googlesheet
- 这个 sheet 有两列
Date
和 Contents
。
- 我只想在第一个值为日期时突出显示行,如下所示
Date Contents
Dec 22 hello --> highlight this row, since it has date on column Date
hi ---> don't hightlight this
Dec 21 This is another data and needs to be highlighted
dont highlight me
dont highlight me
Dec 20 highlight me
And so on.
试试这个公式
=$A1<>""
我对 google spreadsheet 很陌生,并且尝试使用 conditional Formatting
仅在第一列值为日期时突出显示行。
- 分享publicgoogle传播sheet:https://docs.google.com/spreadsheets/d/10NzbtJhQj4hQBnZXcmwise3bLBIAWrE0qwSus_bz7a0/edit#gid=1405439211
我的尝试
=not (isblank($A4))
// This is not working.
// But A4 is not fixed, on a new day if I insert some rows, $A4 might be $A5 and it may not work.
例子googlesheet
- 这个 sheet 有两列
Date
和Contents
。 - 我只想在第一个值为日期时突出显示行,如下所示
Date Contents
Dec 22 hello --> highlight this row, since it has date on column Date
hi ---> don't hightlight this
Dec 21 This is another data and needs to be highlighted
dont highlight me
dont highlight me
Dec 20 highlight me
And so on.
试试这个公式
=$A1<>""