我想在第三个字符= J时显示数据 示例:
Jajar
asjur
bajar
kaka
dede
lala
结果
jajar
asjur
bajar
答案 0 :(得分:3)
在条件格式中尝试此公式:
=FIND("j",A1)=3
如果是TRUE
,它将评估为TRUE
。
如果是FALSE
,只需确保字体变为白色。
答案 1 :(得分:0)
使用以下公式作为数组公式。
=IFERROR(INDEX($A$1:$A$6,SMALL(IF(MID($A$1:$A$6,3,1)="j",ROW($A$1:$A$6),""),ROWS($A$1:$A1))),"")
按 CTRL + SHIFT + ENTER 来评估公式,因为它是一个数组公式。
您必须根据工作表中的数据位置调整公式。
答案 2 :(得分:0)
使用 A 列中的数据,在 B2 中输入:
class CustomView: UIView {
override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
self.backgroundColor = UIColor.selected
}
override func touchesEnded(_ touches: Set<UITouch>, with event: UIEvent?) {
self.backgroundColor = UIColor.default
}
override func touchesCancelled(_ touches: Set<UITouch>, with event: UIEvent?) {
self.backgroundColor = UIColor.default
}
}
并复制下来。然后AutoFilter列 B :
答案 3 :(得分:-1)