- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Create sequential
I have data as below (column A, B, and C), I would like to create sequence column by add formula.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create sequential
If you are trying to create the sequence column, here is the formula that recreates the column you showed. It is based upon the formula @txnelson provided.
Attached is the table and the Sequence column with a formula.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create sequential
Here is one form of a formula that will work
if(row()==1, x=0);
If(:c==0, x=x+1);
x;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create sequential
The Sequence() function is what you're looking for.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create sequential
If you are trying to create the sequence column, here is the formula that recreates the column you showed. It is based upon the formula @txnelson provided.
Attached is the table and the Sequence column with a formula.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Create sequential
Thanks all for solve my problem. I try all solution that you provide and gzmorgan0's formula is the best match my problem.
@gzmorgan0 wrote:If you are trying to create the sequence column, here is the formula that recreates the column you showed. It is based upon the formula @txnelson provided.
Attached is the table and the Sequence column with a formula.