Help: Data filter expression for filtered dashboard

I have a filtered dashboard that uses quick edit columns to display data from a table.

I have two customer types: Staff and Student

 

Isnotblank(
Any(
Select(Filter[ID],
AND(
DATE([_Thisrow].[Date & Time])>=[Start Date],
DATE([_Thisrow].[Date & Time])<=[End Date],
[_thisrow].[Customer Type]=[Customer Type]
))))

 

I want to display data for both customer types when none of the enum is selected.

How can I change the expression to achieve this?

Thakns!

0 4 104
4 REPLIES 4

OR( ISBLANK(...) , ... )

Hi Marc, I'm a bit confused about this one. Will the OR expression be wrapped around the customer type field? Thanks!

Replace your existing basic equality condition of x=y, with OR( ISBLANK( x ) , x=y )

Thanks.
This worked for me:

IF(
ISBLANK([Customer Type]),ISBLANK([Customer Type]),
[_thisrow].[Customer Type]=[Customer Type]
)

 

Top Labels in this Space