Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Consider using ISFILTERED and/or HASONEFILTER
Hi Ibendlin,
Thank you for your response, my existing measures is already with ISFILTERED, kindly do see the measure as below and advise changes that has to be made.
ISSUE BREAKDOWN BY REGION =
SELECTEDVALUE
('Quarter'[Quarter],
" "
) &
IF
(
ISFILTERED
('Region'[Region]),
""
,
" ALL"
) &
" ISSUE BREAKDOWN ANALYSIS BY REGION "
&
if
(
ISFILTERED
('Region'[Region]),
"FOR "
&
CONCATENATEX
(
values
('Region'[Region]),'Regionr'[Region],
", "
),
""
)
Formatting it gives
ISSUE BREAKDOWN BY REGION =
SELECTEDVALUE ( 'Quarter'[Quarter], " " )
& IF ( ISFILTERED ( 'Region'[Region] ), "", " ALL" ) & " ISSUE BREAKDOWN ANALYSIS BY REGION "
& IF (
ISFILTERED ( 'Region'[Region] ),
"FOR " & CONCATENATEX ( VALUES ( 'Region'[Region] ), [Region], ", " ),
""
)
Be aware that you did not specify a sort order for CONCATENATEX, so the result will be random.
User | Count |
---|---|
64 | |
59 | |
47 | |
32 | |
31 |
User | Count |
---|---|
84 | |
73 | |
52 | |
50 | |
44 |