简体   繁体   English

带有公式的 Google 表格条件格式

[英]Google Sheets conditional formatting with formula

Here is the link to my google sheet: https://docs.google.com/spreadsheets/d/1toBfSTFwIzlUOVZrWWjmhIOZizXuiJ091dYN70kZHcA/edit?usp=sharing这是我的谷歌表的链接: https ://docs.google.com/spreadsheets/d/1toBfSTFwIzlUOVZrWWjmhIOZizXuiJ091dYN70kZHcA/edit?usp=sharing

I am trying to create conditional formatting based on a range of dates which does not seem to be working.我正在尝试根据似乎不起作用的一系列日期创建条件格式。

This is my formula:这是我的公式:

=isnumber(vlookup(C12,$K$60:$K$71,1,0))

I used =isnumber because of the date issue.由于日期问题,我使用了=isnumber The problem is that only the first cell of the cells selected to be conditionally formatted is changing color which I know is incorrect because the first cell does not even have a date number.问题是只有第一个单元格被选择为有条件格式化的单元格正在改变颜色,我知道这是不正确的,因为第一个单元格甚至没有日期编号。

What am I doing wrong?我究竟做错了什么?

带有公式的 Google 表格条件格式

try like this:试试这样:

=VLOOKUP(C11, FILTER($K$60:$K$71, $K$60:$K$71<>""), 1, )*(ISNUMBER(C11))

or even:甚至:

=VLOOKUP(C11, $K$60:$K$71, 1, )*(ISNUMBER(C11))

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Google表格中条件格式的公式 - formula for conditional formatting in google sheets Google表格,基于公式的条件格式 - Google Sheets, formula based conditional formatting Google表格条件格式的自定义公式 - Google Sheets custom formula in conditional formatting Google表格中过滤表中MAX值的条件格式公式 - Conditional formatting formula for MAX value across filtered table in Google Sheets 条件格式中的自定义公式以包含多个单词 - Google 表格 - Custom Formula in Conditional Formatting to Include Multiple Words - Google Sheets Google表格基于条件格式自定义公式突出显示行 - Google Sheets highlight row based on conditional formatting custom formula 用于条件格式的谷歌表格公式:“如果单元格包含精确的文本文本”然后 - Google Sheets formula for conditional formatting: “if cell contains exact text text” then 当单元格公式为 false 时条件格式化 Google Sheets 单元格 - Conditional Formatting Google Sheets cells when in-cell formula is false 在 Google 表格的条件格式中使用自定义公式时遇到问题 - Having trouble using custom formula in conditional formatting on Google Sheets Google 表格 - 基于包含特定公式的单元格的条件格式 - Google Sheets - Conditional Formatting Based on a cell containing a specific formula
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM