Excel formula: Sequence but only every second Row

luminya

New Member
Joined
Dec 27, 2021
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi,

is it possible to adjust the =SEQUENCE() formula in a way that only every second row is filled?
I already tried =IF(ISEVEN(ROW());SEQUENCE(10,1)). However I receive the #SPILL Error because it would start anew every time the condition is met. Does anyone have an idea on how to approach this?
I would like to find a solution without VBA.

Thank you very much in advance!
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Hi all,
Another option without LET could be:

= IF( ISEVEN( SEQUENCE( 10 ) ),
SEQUENCE( 10 ),
"" )

The two above, I like.
 
Upvote 0
Solution
Hi & welcome to MrExcel.
is it possible to adjust the =SEQUENCE() formula in a way that only every second row is filled?
If you want the alternate rows to be empty, so that you can manually put values in them, then no it's not.
 
Upvote 0
Hi all,
thank you very much for all your creative responses! Very helpful!!
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,591
Messages
6,125,711
Members
449,252
Latest member
cryss1988

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