Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
lennox25
Post Patron
Post Patron

How to round up a calculated measure?

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?

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @lennox25 

 

You can try the following methods.

No of Visits = DIVIDE(SUM ('Table'[StoreNo]),7)
Measure = ROUND([No of Visits],0)

vzhangti_0-1701157583951.png

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.

 

View solution in original post

4 REPLIES 4
Syndicate_Admin
Administrator
Administrator

Thank you very much!

v-zhangti
Community Support
Community Support

Hi, @lennox25 

 

You can try the following methods.

No of Visits = DIVIDE(SUM ('Table'[StoreNo]),7)
Measure = ROUND([No of Visits],0)

vzhangti_0-1701157583951.png

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.

 

parry2k
Super User
Super User

@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.

Ahmedx
Super User
Super User

if you need to round down then use this

ROUNDDOWN([No of Visits],0)

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors