Records don’t know what views they appear in.
However, these two views you mention are likely filtered, which means you could probably construct a formula that asks the same question as the filters do. If you ever change the views’ filters, you need to change the formula as well.
Without seeing your table structure, an example of what that formula could look like would be:
IF(
AND(`each of your two views filter conditions separated as a comma`),
"
",
"
"
)
Records don’t know what views they appear in.
However, these two views you mention are likely filtered, which means you could probably construct a formula that asks the same question as the filters do. If you ever change the views’ filters, you need to change the formula as well.
Without seeing your table structure, an example of what that formula could look like would be:
IF(
AND(`each of your two views filter conditions separated as a comma`),
"
",
"
"
)
Yep thank you. That’s what I ended up doing with an OR statement checking each value = BLANK(). Cheers!