Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
80 | |
51 | |
38 | |
34 |
User | Count |
---|---|
92 | |
75 | |
52 | |
51 | |
44 |