Jump to content

Another Excel Question

Hi guys, I have a formula in a cell =(F2-G2) and I want to tell the cell to round to the nearest hundredth. I Googled it but the formula examples I saw had multiple cells, say one cell giving the raw output and a second cell rounding that other cell's output, I just want one cell to preform my formula then round the answer. How do I do that? 

 

Thanks, Jason.

Link to comment
Share on other sites

Link to post
Share on other sites

off the top of my head, you can just give that cell a custom markup to only display to the nearest hundredth.

Link to comment
Share on other sites

Link to post
Share on other sites

12 minutes ago, Jason Betts said:

Hi guys, I have a formula in a cell =(F2-G2) and I want to tell the cell to round to the nearest hundredth. I Googled it but the formula examples I saw had multiple cells, say one cell giving the raw output and a second cell rounding that other cell's output, I just want one cell to preform my formula then round the answer. How do I do that? 

 

Thanks, Jason.

Format as number, then decrease decimal point?

||| Drakon (Desktop Build) |||

|| CPU: 3800X || Cooler: Kraken X63 || Motherboard: B450 Aorus M || Memory: HyperX DDR4-3200MHz 16G ||

|| Storage: 512GB 970 Pro + 500GB 850 EVO + 250GB 850 EVO + 1TB HDD + 2TB HDD || Graphics Card: RX 5700 XT Red Devil || Case: Thermaltake Core V21 || PSU: XFX XTR 750W 80+Gold || 

 

Link to comment
Share on other sites

Link to post
Share on other sites

20 minutes ago, Jason Betts said:

Hi guys, I have a formula in a cell =(F2-G2) and I want to tell the cell to round to the nearest hundredth. I Googled it but the formula examples I saw had multiple cells, say one cell giving the raw output and a second cell rounding that other cell's output, I just want one cell to preform my formula then round the answer. How do I do that? 

 

Thanks, Jason.

use ROUNDDOWN,

=ROUNDDOWN(F2-G2,0)

:)

 

on the cell you want to display the result. simply use =ROUNDDOWN(F2-G2,0)

the use of "0" will round down the number to the nearest whole number.

Link to comment
Share on other sites

Link to post
Share on other sites

12 minutes ago, manikyath said:

off the top of my head, you can just give that cell a custom markup to only display to the nearest hundredth.

Cool, but how do I do that? o.O

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, vinx said:

use ROUNDDOWN,

=ROUNDDOWN(F2-G2,0)

:)

 

 

That's perfect! Now that I understand the syntax I have made two changes:

=ROUNDUP(F2-G2,2)

 

0 to 2, because I want hundredths

Round up, because this is for my taxes, I'd rather say it cost me a few pennies more than less.

 

Thank you! :D 

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, Jason Betts said:

That's perfect! Now that I understand the syntax I have made two changes:

=ROUNDUP(F2-G2,2)

 

0 to 2, because I want hundredths

Round up, because this is for my taxes, I'd rather say it cost me a few pennies more than less.

 

Thank you! :D 

is there an =ROUND function? (i dont have excel on hand right now :P

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, Jason Betts said:

That's perfect! Now that I understand the syntax I have made two changes:

=ROUNDUP(F2-G2,2)

 

0 to 2, because I want hundredths

Round up, because this is for my taxes, I'd rather say it cost me a few pennies more than less.

 

Thank you! :D 

That's great. :)

Link to comment
Share on other sites

Link to post
Share on other sites

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

×