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!
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]
)
User | Count |
---|---|
15 | |
14 | |
8 | |
7 | |
4 |