Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
SecondDueService =
VAR Seconds = 560
VAR Units = { 12, 71 }
RETURN
IF (
COUNTAX (
FILTER (
'AGENCY EXPOSURE APPARATUSES',
'AGENCY EXPOSURE APPARATUSES'[ResponseTimeSeconds] = Seconds
&& 'AGENCY EXPOSURE APPARATUSES'[apparatusTypeID] = Units
),
'AGENCY EXPOSURE APPARATUSES'[ResponseTime]
) >= 1,
TRUE (),
FALSE ()
)Hey Everyone,
I'm trying to do the above but I cannot use an array in a filter. Is there another methodology someone could suggest that would have the same effect aside from doing several and/or's??
Solved! Go to Solution.
So if you just want to filter for rows where the units are either 12 or 71 then just change this line
&& 'AGENCY EXPOSURE APPARATUSES'[apparatusTypeID] = Units
to use the IN operator:
&& 'AGENCY EXPOSURE APPARATUSES'[apparatusTypeID] IN Units
PS. techincally in DAX the { } syntax is a table constructor, so what you have is a single column table not an array (but that is just semantics, functionally it operates similar to an array)
So if you just want to filter for rows where the units are either 12 or 71 then just change this line
&& 'AGENCY EXPOSURE APPARATUSES'[apparatusTypeID] = Units
to use the IN operator:
&& 'AGENCY EXPOSURE APPARATUSES'[apparatusTypeID] IN Units
PS. techincally in DAX the { } syntax is a table constructor, so what you have is a single column table not an array (but that is just semantics, functionally it operates similar to an array)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 45 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 64 | |
| 32 | |
| 31 | |
| 27 |