Interpolating but with 10 Numbers between each value

kdgreen

New Member
Joined
Feb 22, 2017
Messages
6
Right I have numbers from -90 to 90 by 1 with values and I need to interpolate numbers from -90 to 90 by 0.1. I need my formula to skip 10 cells then increase to use new numbers to interpolate, so for numbers between -90 and -89 it uses those values then -89 to -88 for the next 10 interpolated numbers. I don't know if I explained it fully if there is any futher explanation needed please ask. Here's sample of my data to explain better maybe,


Values that I have. Interpolated numbers.
-90.0000.1531-90.00.1531
-89.0000.1573-89.90.1535
-88.0000.1609-89.80.1539
-87.0000.1675-89.70.1544
-86.0000.1709-89.60.1548
-85.0000.1764-89.50.1552
-84.0000.1815-89.40.1556
-83.0000.1872-89.30.1560
-82.0000.1925-89.20.1565
-81.0000.1987-89.10.1569
-80.0000.2047-89.00.1573
-79.0000.2113-88.90.1577
-78.0000.218-88.80.1580
-77.0000.2251-88.70.1584
-76.0000.232-88.60.1587
-75.0000.2402-88.50.1591
-74.0000.2467-88.40.1595
-73.0000.2558-88.30.1598
-72.0000.264-88.20.1602
-71.0000.2731-88.10.1605
-70.0000.2818-88.00.1609

<colgroup><col span="3"><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Welcome to the forum.

Try:


Book1
ABCD
1-900.1531-900.1531
2-890.1573-89.90.1535
3-880.1609-89.80.1539
4-870.1675-89.70.1544
5-860.1709-89.60.1548
6-850.1764-89.50.1552
7-840.1815-89.40.1556
8-830.1872-89.30.1560
9-820.1925-89.20.1565
10-810.1987-89.10.1569
11-800.2047-890.1573
12-790.2113-88.90.1577
13-780.218-88.80.1580
14-770.2251-88.70.1584
15-760.232-88.60.1587
16-750.2402-88.50.1591
17-740.2467-88.40.1595
18-730.2558-88.30.1598
19-720.264-88.20.1602
20-710.2731-88.10.1605
21-700.2818-880.1609
Sheet9
Cell Formulas
RangeFormula
C1=$A$1+(ROW()-1)*0.1
D1=OFFSET($B$1,(ROW()-1)/10,0)+MOD(ROW()-1,10)*(OFFSET($B$2,(ROW()-1)/10,0)-OFFSET($B$1,(ROW()-1)/10,0))/10


Put the formulas in C1:D1 and drag down as far as needed.
 
Upvote 0

Forum statistics

Threads
1,215,046
Messages
6,122,855
Members
449,096
Latest member
Erald

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