Skip to main content
Question

Roundup

  • June 4, 2025
  • 4 replies
  • 75 views

Forum|alt.badge.img+2

Hi, 

I’m trying to roundup the following formula: ({GROUP PRICE}+({EXTRAS}*3))/3

Where GROUP PRICE is the pricing for a group to which I add extras * by number of guests and then divide by 3 to obtain a price per person. The formula is working and in this case I obtain a pricing of 101.667€. I’m trying to roundup this number to 102€.

Thanks

4 replies

Mike_AutomaticN
Forum|alt.badge.img+28

Hey ​@Christophe33520,

You’ll want to give the following formula a shot:
 

CEILING(({GROUP PRICE} + ({EXTRAS} * 3)) / 3)

 
Works on my side!

Mike, Consultant @ Automatic Nation


Forum|alt.badge.img+2

Hi Mike,

great, thank you so much!


Mike_AutomaticN
Forum|alt.badge.img+28

Did it work ​@Christophe33520? Please keep me posted :D


TheTimeSavingCo
Forum|alt.badge.img+31

Can try ROUNDUP too

ROUNDUP(
({Group Price}+({Extras}*3))/3,
0
)