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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Norbertus
Helper V
Helper V

roundup

Hi,

 

For each row i have a column dat I want to roundup

ROUNDUP[QTY];0)

 

ID | Vendor | Qty | Roundup
1   | A     | 0,3  | 1
2   | B     | 1,6  | 2
3   | A     | 1,2  | 2
 

Now i want the the sum of the roundup column for each Vendor. At this moment the the table calculates first the sum of the QTY and after that its ROUNDUP

 

For Vendor A => 0,3 + 1,2 = 1,5 (roundup 2,0)

For Vendor B => 1,6 = (roundup 2,0)

Total roundup = 4,0

 

round.jpg

The total isn't correct at this moment, the answer must be "8"

1 ACCEPTED SOLUTION
TomMartens
Super User
Super User

Hey,

 

you have to adjust your Measure somewhat, but without knowing your formual it's also a little guesswork, if you want to round first, you have to use a tableiterator that calculates an expression on the row level and finally creates the sum

 

CALCULATE(

  SUMX('yourtable'[customer], ROUNDUP('yourtable'[qty]'))
)

 

Hope this helps



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

2 REPLIES 2
TomMartens
Super User
Super User

Hey,

 

you have to adjust your Measure somewhat, but without knowing your formual it's also a little guesswork, if you want to round first, you have to use a tableiterator that calculates an expression on the row level and finally creates the sum

 

CALCULATE(

  SUMX('yourtable'[customer], ROUNDUP('yourtable'[qty]'))
)

 

Hope this helps



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Thanks, this is the solution

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.