And Expression for row filter condition

I just need help with a slice row filter condtion.
Currently showing all that are not blank
not(isblank([Temp Loc]))
but need to also not show ones where [Temp Loc]=“Gone for Summer”
I keep getting errors with And expressions I try.
Please help.

0 2 369
2 REPLIES 2

So… does this work?

AND(
ISNOTBLANK([Temp Loc]),
[Temp Loc]<>“Gone for Summer”
)

Also helps if you provide some of the errors you are seeing so responses can be more accurate…

Steve
Platinum 4
Platinum 4
Top Labels in this Space