Jump to content

Formula Problem (rounding)


This topic is 7219 days old. Please don't post here. Open a new topic instead.

Recommended Posts

I have the following formula in one file which works great. I want to round the result off to 2 decimals but I can't figure out where to place the (round) command. Normally I'd use "round(deposit,2)" but it doesn't work either at the beginning or end. Thanks

If(Terms = "C.O.D",Total Proposal *.50, If(Terms = "Net 30 with Deposit",Total Proposal*.50, If(Terms ="Open Account with Deposit",Total Proposal*.50,0)))

Link to comment
Share on other sites

Round(Case(Terms = "C.O.D",Total Proposal *.50, Terms = "Net 30 with Deposit",Total Proposal*.50, Terms ="Open Account with Deposit",Total Proposal*.50,0),2)

I find the Case to be easier to work with, and I believe it is more efficient.

Steve

Link to comment
Share on other sites

This topic is 7219 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.