Forum Discussion
RJ_KON
Helper I
4 years agoDAX measure using isfiltered function
Hi-Power BI geeks, I am trying to bring text display into the card visual and it should display when two slicers and one clustered bar chart visuals are filtered. So I tried to use the below Dax...
- 4 years ago
Thanks, Paul, it worked:)
Anonymous
4 years agoNot applicable
I am in a similar boat, I am using the code. Current Sku/Description =
IF (
ISFILTERED ( TRPT_FS_COPA_ADHOC_DTL_V2[SKU/Material Description] ),
FIRSTNONBLANK (
TRPT_FS_COPA_ADHOC_DTL_V2[SKU/Material Description],
TRPT_FS_COPA_ADHOC_DTL_V2[SKU/Material Description]
),
""
)
This creates a measure that shows on a card only the selected filter.
But what I need help with is having the card show multiple filter selections. Instead of just the first non-blank filter selection.
- PaulDBrown4 years ago
Community Champion
Is the value displayed that if the selected value in the filter? If so, so can try something along the lines of:
Filter Values = IF ( ISFILTERED ( TRPT_FS_COPA_ADHOC_DTL_V2[SKU/Material Description] ), CONCATENATEX ( VALUES ( TRPT_FS_COPA_ADHOC_DTL_V2[SKU/Material Description] ), TRPT_FS_COPA_ADHOC_DTL_V2[SKU/Material Description], ", " ), "" )