如果列A中的值为$(document).on("click", ".sub-cat-button", function(e) {
e.preventDefault();
if ($(this).attr("data-show-main") == "hide") {
/*required for unchecking*/
$(".cat-button.focus").trigger("click");
$(this).attr("data-show-main", "show");
} else
if ($(this).attr("data-show-main") == "show") {
$(this).attr("data-show-main", "hide");
} else {
/*also required for unchecking*/
$(this).attr("data-show-main", "hide");
}
});
,我想突出显示列D中具有三个最低值的行。例如:
100
答案 0 :(得分:1)
请尝试选择A1:A6和D1:D6,然后选择格式,条件格式...,如果...则格式化单元格,自定义公式为:
=and($A1=100,MATCH($D1,query($A$1:$D$6,"select D where A=100 order by D asc limit 3"),0))
选择格式,然后单击完成。