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.
In the report the division names are appearing but some are showing with blank data even though in the measures the blank function is used as ZERO hard coded in the argument. Please advise
Solved! Go to Solution.
You can try the following methods and see what works for you.
1st Method:
VAR __measure = [Your Measure]
RETURN
IF( ISBLANK(__measure), 0, __measure)
2nd Method:
VAR __measure = [Your Measure]
RETURN
IF( ISBLANK(__measure), __measure + 0, __measure)
You can try the following methods and see what works for you.
1st Method:
VAR __measure = [Your Measure]
RETURN
IF( ISBLANK(__measure), 0, __measure)
2nd Method:
VAR __measure = [Your Measure]
RETURN
IF( ISBLANK(__measure), __measure + 0, __measure)
User | Count |
---|---|
68 | |
63 | |
59 | |
54 | |
28 |
User | Count |
---|---|
183 | |
80 | |
62 | |
46 | |
38 |