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
Dear Communtiy,
I'm trying to show all the values which satisfies the condition,but I could only see single value.
Please help me with the DAX formula.
Below is the formula I have tried but it's showing all the values not working based on condition
Solved! Go to Solution.
Hi @Charu ,
Your table filter need to be configured as "'Table'[Variance%]>0" like the following measure.
Measure =
VAR NOTETXT =
CONCATENATEX (
FILTER ( 'Table', 'Table'[Variance%] > 0 ),
'table'[Category],
" AND "
)
VAR pretext = " Following Category ' "
VAR postcat = " 'achieved target"
RETURN
pretext & NOTETXT & postcat
Here is the result.
Hi @Charu ,
Your table filter need to be configured as "'Table'[Variance%]>0" like the following measure.
Measure =
VAR NOTETXT =
CONCATENATEX (
FILTER ( 'Table', 'Table'[Variance%] > 0 ),
'table'[Category],
" AND "
)
VAR pretext = " Following Category ' "
VAR postcat = " 'achieved target"
RETURN
pretext & NOTETXT & postcat
Here is the result.
Tough to tell what is going on, sample data and expected result would help. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
I did edit my post with sample data and the expected result.Hope this make sense.Please help me achieve the expected result.