Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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
User | Count |
---|---|
121 | |
69 | |
67 | |
57 | |
50 |
User | Count |
---|---|
176 | |
83 | |
69 | |
65 | |
54 |