Add number using if formula

Umer123

New Member
Joined
Nov 7, 2020
Messages
7
Office Version
  1. 2007
Platform
  1. Windows
Hi All,

I need a formula using an if function that add +1 on per $1000 of cell value if exceeds from $10,000

$95010
$10,00010
$10,00111
$11,00112

Thanks in advance...
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Dear Umer,

Please try the below:

Book1
AB
1$5010
2$10,00010
3$10,00111
4$11,00112
5$12,10013
6$11,99912
Sheet1
Cell Formulas
RangeFormula
B1:B6B1=IF(A1<=10000,10,ROUNDUP(A1/1000,0))


Regards
 
Upvote 0
Another option
Excel Formula:
=MAX(10,ROUNDUP(A2/1000,0))
 
Upvote 0

Forum statistics

Threads
1,215,256
Messages
6,123,912
Members
449,132
Latest member
Rosie14

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