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 September 15. Request your voucher.
Hello,
I would like to fill empty cell with zero, how can I do that? As you see on the picture, I have some empty cells...
This is my measure
Solved! Go to Solution.
Hi @poko ,
Try below code :
Total Pending =
COALESCE(
CALCULATE(
COUNTROWS('CecCaseDetail H'),
'CecCaseDetail H'[Case] IN {"New", "Enhanced", "Stand"}
),
0
)
Thanks,
Ankita
And for this?
Similarly @poko , you can use again COALESCE function :
just add COALESCE? Right?
yes it works 🙂
It works Thank you.
Hi @poko ,
Try below code :
Total Pending =
COALESCE(
CALCULATE(
COUNTROWS('CecCaseDetail H'),
'CecCaseDetail H'[Case] IN {"New", "Enhanced", "Stand"}
),
0
)
Thanks,
Ankita
User | Count |
---|---|
69 | |
64 | |
62 | |
55 | |
28 |
User | Count |
---|---|
203 | |
82 | |
65 | |
48 | |
38 |