在单元中工作的公式,但不采用条件格式

发布于 2025-01-24 13:00:49 字数 577 浏览 0 评论 0原文

我有以下公式,该公式在输入单元格时根据需要工作。但是,当我尝试以条件格式使用时,相同的公式不起作用:

= if(regexMatch(vookexmatch(vookep(u2,deals!$ a $ a $ a $ 2:f,5,false),false),“ likes”),o2> = vlookup(u2,deals!$ a $ 2:f,4,false),q2> = vlookup(u2,deals!$ a $ 2:$ a $ 2:f,4,false))

/I.SSTATIC.NET/ba5rr.png“ rel =” nofollow a href =“ https://i.sstatic.net/rvmwn.png” rel =“ nofollow noreferrer”>

直到现在使用此公式才有条件格式的任何问题,我真的不确定这是什么问题,因为这不是我的专业知识。

感谢我能获得的任何帮助!

I have the following formula which works as desired when entered into a cell. However, the same formula does not work when I try to use it in conditional formatting:

=IF(REGEXMATCH(VLOOKUP(U2,DEALS!$A$2:F,5,FALSE), "Likes"), O2>=VLOOKUP(U2,DEALS!$A$2:F,4,FALSE), Q2>=VLOOKUP(U2,DEALS!$A$2:F,4,FALSE))

Formula in cell

Formula in conditional formatting

I haven't had any issues with conditional formatting up until now with this formula, and I am really not sure what is the issue as this is not my expertise.

Appreciate any help I can get!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你好,陌生人 2025-01-31 13:00:49

尝试:

=IF(REGEXMATCH(VLOOKUP(U2, INDIRECT("DEALS!A2:F"), 5, 0), "Likes"), 
 O2>=VLOOKUP(U2, INDIRECT("DEALS!A2:F"), 4, 0), 
 Q2>=VLOOKUP(U2, INDIRECT("DEALS!A2:F"), 4, 0))

条件格式不理解来自不同表的引用,如果不是间接的

”在此处输入图像说明”

try:

=IF(REGEXMATCH(VLOOKUP(U2, INDIRECT("DEALS!A2:F"), 5, 0), "Likes"), 
 O2>=VLOOKUP(U2, INDIRECT("DEALS!A2:F"), 4, 0), 
 Q2>=VLOOKUP(U2, INDIRECT("DEALS!A2:F"), 4, 0))

conditional formatting does not understand references coming from different sheets if not indirected

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文