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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I have a set of data that is all rounded to the nearest 100, however when i put the data into a table and choose to average it, the number isn't rounded.
Is there anyway to round table totals?
Thanks!
Sonia
Hi,@ SoniaL
You may try to use round function to create a measure or column like below:
Column = AVERAGE(Table3[Qtu])
Column 2 = ROUND(AVERAGE(Table3[Qtu]),0)
Best Regards,
Lin