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.
hello,
I have created a mesaure like this,
Solved! Go to Solution.
Thanks. Unfortunately result is not coming with the above solution but the material you provided that helped to bring the result 😊
Hi @Anonymous ,
Has the problem be solved?
Can you show some sample data and expected result to us?
Best Regards,
Jay
I have used the below measure,
I'm showing you the measure... but you definitely should read/watch the materials I posted just minutes ago. If you don't do it, you'll not know what's going on and why your DAX above does not do what you think it should. Up to you.
[Measure] =
CALCULATE(
SUM( 'Table AOP'[Value] ),
KEEPFILTERS( 'Table AOP'[Scenario] = "Actual" ),
KEEPFILTERS(
NOT( ISBLANK( 'Table AOP'[Description] ) )
)
)
// With new syntax... it should
// work if you've got the latest
// PBI.
[Measure] =
CALCULATE(
SUM( 'Table AOP'[Value] ),
KEEPFILTERS(
'Table AOP'[Scenario] = "Actual"
&&
NOT( ISBLANK( 'Table AOP'[Description] ) )
)
)
Thanks. Unfortunately result is not coming with the above solution but the material you provided that helped to bring the result 😊
@Anonymous
If you go to ALLNOBLANKROW – DAX Guide and read it carefully, you'll know why it doesn't work. But to understand it, please watch this: Blank row in DAX - YouTube