Increment Formulas but Adding Empty Rows in Results

mstine

New Member
Joined
Apr 25, 2018
Messages
1
THE DATA

A
1 hello
2 my
3 excel
4 world

DESIRED RESULT in col C using Formula increment

C
6 Hello
7
8 my
9
10 excel
11
12 world
13

What I attempted
C6 =$A1
C8 =$A2
SELECT C6-C9 and drag 2 rows to increment formula

RESULT
C10 =$A5, not the desired C10 =$A3

Any help would be appreciated.
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Welcome to the Board!

Place his in cell C6 and copy down:
Code:
=IF(ISEVEN(ROW()),OFFSET($A$1,(ROW()-6)/2,0),"")
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,895
Members
449,097
Latest member
dbomb1414

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