Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
my table columns are capamt, monthname, paymentmonth ,
i created a matrix visual of the uploaded image i.e in Rows field - monthname ,columns field - paymentmonth and for values i gave an dax expression
capamtmes = IF(ISBLANK(SUM(Query3[capamt])),0.0,SUM(Query3[capamt])) as the value but the blank spaces are not replced with 0.0 ,
i tried COALESCE(SUM(Query3[capamt]),0.0) but this is also fill the blank spaces ,any suggestions please let me know
Solved! Go to Solution.
Hi @Nithinbob24
you can use a measure like :
The pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
Did you download the PBIX?
And used the same model with 2 months's tables?
Adjusted measure:
capamtmes =
IF(
HASONEVALUE(Query3[monthname]) && HASONEVALUE(Query3[paymentmonth]),
COALESCE(SUM(Query3[capamt]), 0.0),
0.0
)
💌 If this helped, a Kudos 👍 or Solution mark would be great! 🎉
Cheers,
Kedar
Connect on LinkedIn
Hi @Nithinbob24
Please provide workable sample data . It is hard to figure out what you want to achieve from the description alone.
no i cant provide
Hi @Nithinbob24
you can use a measure like :
The pbix is attached
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
i tried this , but it did not work , thank you though for the reply
Did you download the PBIX?
And used the same model with 2 months's tables?
earlier i only used the measure, i did not see the model , it is working
Thank you so much for the help