Microsoft Excel Mac 2011: How to get the cell below value, and skip a row ?

vpatel93

New Member
Joined
Oct 3, 2016
Messages
1
Hi guys, I have a sheet like:
SKUprice
H100L200-245-PK10
1.09
H100L200-245-PK100
10.62
H100L245-290-PK10
1.37
H100L245-290-PK100
13.26

<tbody>
</tbody>

Now, in simple human logic, I need pack of 10 to take the price of it's 100 pack version. So, cell b2 (1.09) becomes 10.62. Cell b3 (10.62) remains as is. Then cell b4 becomes 13.26 and b5 remains as is.

Spreadsheet should after look like

SKUprice
H100L200-245-PK10
10.62
H100L200-245-PK100
10.62
H100L245-290-PK10
13.26
H100L245-290-PK100
13.26

<tbody>
</tbody>


I have 4518 rows(including header rows). So, cannot do it manually.

What I attempted:

In cell B2 I typed:

Code:
=INDEX($B$2:$B$4518,ROWS(B$2:B2)+1)

Then selected that cell along with b3 and dragged down. Works at treat if I drag down down to only b4 then reselect all and drag down again. But if I select and drag down further it doesn't work.

The pattern is being picked up in that formulae is only in every other row. But it is changing the skipped rows value so that for example if I drag four down, the price column is:

price
10.62
10.62
13.26
13.26
11.62
11.62
14.26
14.26

<tbody>
</tbody>
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.

Forum statistics

Threads
1,217,383
Messages
6,136,259
Members
450,001
Latest member
KWeekley08

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