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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi PowerBI Gurus,
Hope you all are keeping well.
I have a Measure which calculates Returns% = [No of Returns]/[No of Sales]. when I pull the month from calendar table and measure from another query and put it in a table it shows only the months with data and doesnt display other months. I know there is an option to Show Items With No data. But due to certain limitations I dnt want to use that option and instead want all the months to be displayed with 0% against the month with no data.
Any leads would be apprecaited. Thanks in advance for your time.
Solved! Go to Solution.
Hi,
Please try something like below whether it suits your requirement.
Returns% =
( [No of Returns]/[No of Sales] ) + 0
@Anonymous
Or you can use
If(ISBLANK([No of Returns]/[No of Sales]),0,([No of Returns]/[No of Sales]))
If solved, please mark as SOLUTION
Proud to be a Super User! | |
Hi,
Please try something like below whether it suits your requirement.
Returns% =
( [No of Returns]/[No of Sales] ) + 0
@Anonymous
Or you can use
If(ISBLANK([No of Returns]/[No of Sales]),0,([No of Returns]/[No of Sales]))
If solved, please mark as SOLUTION
Proud to be a Super User! | |
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!