Google表有条件格式化多个标准(不包括第一次日期)
我有大量的评估数据,用于测试前和后测试,并试图突出测试后的行为0或负收益的行。我无法删除的第一个测试的缩放收益数据(基于先前的SY测试),我想排除学年的第一个测试。我已经尝试了以下两个公式以进行有条件格式:
=(countif($ r $ 3:$ r&r&u $ 3:$ u $ 3:$ u),$ r3& $ u3)> 1)*countifs($ u3,$ u3,“ em>读取“,$ v3,not(min($ v3)),$ z3,”< = 0”)
- 没有亮点
=(countif(arrayformula($ r $ 3:$ r& $ u& $ u $ $ 3:3: $ u),$ r3& $ u3)> 1)*countifs($ u3,“ reading ”,$ v3,max($ v3),$ z3,$ z3,'< = 0”)
- 负收益,包括第一个测试日期,突出显示了
(countif(arrayformula($ r $ 3:$ r&r&r&u $ 3:$ u),$ r3&r3& $ u3)> 1)部分检查学生ID和测试以突出显示那些已经不止一次测试并根据我所做的研究,第二部分 *countifs($ u3,“ reading ”,$ v3,max($ v3),$ z3,$ z3,< = 0“)应充当寻找特定主题区域(Col U),测试日期(Col V)和缩放收益(Col Z)的其他标准(Col Z),
任何建议都将不胜感激!
这是数据的简化版本(实际工作表具有更多与与公式相关的特定测试和学生有关的数据): https://docs.google.comle.com/spreadss/spreadss/spreadss/d/1ntd9jaiaiaiaiaiaqq0lz-wirz-wevpepelds of 6 USP =共享
I have a bunch of assessment data for pre and post testing and am trying to highlight the rows in which a post-test(s) had 0 or negative gains. There is scaled gains data for the first test that I cannot remove (based on prior SY tests) and I would like to exclude the first test for the school year. I have tried the following two formulas for conditional formatting:
=(COUNTIF(ARRAYFORMULA($R$3:$R&$U$3:$U),$R3&$U3)>1)*COUNTIFS($U3, "Reading", $V3, NOT(MIN($V3)), $Z3,"<=0")
- Nothing highlights
=(COUNTIF(ARRAYFORMULA($R$3:$R&$U$3:$U),$R3&$U3)>1)*COUNTIFS($U3, "Reading", $V3, MAX($V3), $Z3,"<=0")
- Negative gains, including the first test date highlight
The (COUNTIF(ARRAYFORMULA($R$3:$R&$U$3:$U),$R3&$U3)>1) portion checks the student id and test to highlight only those that have tested more than once and based on the research I did, the second portion *COUNTIFS($U3, "Reading", $V3, MAX($V3), $Z3,"<=0") should act as additional criteria looking for the specific subject area (col U), test date (col V) and scaled gains (col Z)
Any recommendations would be greatly appreciated!
Here is a simplified version of the data (actual sheet has a lot more data related to the specific tests and students that is not relative to the formula): https://docs.google.com/spreadsheets/d/1NtD9JaIAqq0Lz-6LAvxSAXeo-WpwZtszped6Ou4iwzo/edit?usp=sharing
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常,您不需要数组公式来进行条件格式。您只需要在范围的左上角就将其右上角,其余的就会像您将公式向下和跨越:
note note
i' ve假设分数在每个ID和测试中都处于日期顺序,但是如果不,则可以调整公式
You don't normally need array formulas for conditional formatting. You just need to get it right for the top left hand corner of the range and the rest will follow as if you had pulled the formula down and across:
Note
I've assumed that the scores are in date order within each Id and test, but the formula can be adjusted if not