Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have this measure to calculate No of Visits
No of Visits = CALCULATE (SUM ('Table', [StoreNo]) / 7)
The problem is when I check on the outcomes ( choice of 4) of the visit and the KPIs (7 - which is why divided by 7 as there are 7 rows for each store) on dividing the Count of Visits for some of the outcomes is 0 as the result is say 0.4 .
My question is what do I need to do to round up the calculated measure?
Solved! Go to Solution.
Hi, @lennox25
You can try the following methods.
No of Visits = DIVIDE(SUM ('Table'[StoreNo]),7)Measure = ROUND([No of Visits],0)
Is this the result you expect?
ROUND function (DAX) - DAX | Microsoft Learn
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you very much!
Hi, @lennox25
You can try the following methods.
No of Visits = DIVIDE(SUM ('Table'[StoreNo]),7)Measure = ROUND([No of Visits],0)
Is this the result you expect?
ROUND function (DAX) - DAX | Microsoft Learn
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@lennox25 no idea what you are trying to achieve and this measure doesn't look correct to me:
Measure = SUM ( Table[Column] ) / 7
or
Measure = COUNTROWS ( Table ) / 7
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
if you need to round down then use this
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!