The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
User | Count |
---|---|
78 | |
73 | |
38 | |
30 | |
28 |
User | Count |
---|---|
107 | |
100 | |
55 | |
49 | |
45 |