Round output to 2 decimals in IF(AND(ISERROR

Patty21643

New Member
Joined
Mar 1, 2019
Messages
3
How can I modify the below to round the output to 2 decimals?

=IF(AND(ISERROR(AOT_PricePerShare),AOT_Shares>0),-AOT_BasePrincipal,AOT_PricePerShare*AOT_Shares)
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
How about

=IF(AND(ISERROR(AOT_PricePerShare),AOT_Shares>0),ROUND(-AOT_BasePrincipal,2),ROUND(AOT_PricePerShare*AOT_Shares,2))
 
Upvote 0
Although you could round the value-if-true and value-if-false expressions separately, you could simply round the entire IF-expression because it always returns a number, to wit:

=ROUND(IF(AND(ISERROR(AOT_PricePerShare),AOT_Shares>0),-AOT_BasePrincipal,AOT_PricePerShare*AOT_Shares), 2)

OTOH, it seems odd that you will (try to) calculate AOT_PricePerShare*AOT_Shares if ISERROR(AOT_PricePerShare) is true, but AOT_Shares>0 is false (i.e. AOT_Shares<=0). That will result in an Excel error, namely whatever is making ISERROR return TRUE.

So I suspect your formula is faulty to begin with. And depending on how you fix it, rounding the entire IF-expression might no longer be correct.

But perhaps it is as simple as changing the logic to OR(ISERROR(AOT_PricePerShare),AOT_Shares<=0) .
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,644
Messages
6,120,709
Members
448,983
Latest member
Joaquim_Baptista

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top