Simple way to increment by 10% until a value is reached?

MikeyW1969

Board Regular
Joined
Apr 28, 2014
Messages
80
Hi all,
I am working on resizing an image in Photoshop rather drastically, and one of the tips to to go in 10% increments until I reach my goal, and since I am looking at roughly 100 steps, I was thinking that I could calculate my numbers in Excel. I'm just not sure how to do that. I am starting at 1130 pixels, and will eventually expand to 12,000 pixels, so I would want to have this:
1130
1243
1367
1504

And so on, until it reaches 12000(Or something close). Is this pretty simple to do? The only other thing I'd do is have it not trail beyond the decimal, but I can change that with the Formatting options.

Thanks in advance for any help!
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hi,

You can do this, choose how you want the numbers rounded:


Book1
ABCD
11130113011301130
21243124312431243
31367.3136713681367
41504.03150415051503
51654.433165416561653
61819.876181918221818
72001.864200120051999
82202.05220122062198
92422.255242124272417
102664.481266326702658
112930.929292929372923
123224.022322232313215
133546.424354435553536
143901.066389839113889
154291.173428843034277
164720.29471747344704
Sheet56
Cell Formulas
RangeFormula
A2=MIN(12000,A1*1.1)
B2=MIN(12000,ROUND(B1*1.1,0))
C2=MIN(12000,ROUNDUP(C1*1.1,0))
D2=MIN(12000,ROUNDDOWN(D1*1.1,0))


Formulas copied down.
 
Last edited:
Upvote 0
You're welcome, glad to help.
 
Upvote 0

Forum statistics

Threads
1,214,601
Messages
6,120,467
Members
448,965
Latest member
grijken

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