• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Numerical sequence between empty cells

There are two equations to solve, you can choose whichever you like
First
Code:
=IFERROR(SMALL(IF($C$6:$Q$33=0,"",$C$6:$Q$33),COLUMN(A$3:A3)),"")
Last One
Code:
=IFERROR(AGGREGATE(15,6,$C$6:$Q$33/(($C$6:$Q$33>0)),COLUMN(A$3:A3)),"")
 

Attachments

  • SPP Numerical sequence between empty cells1.xlsx
    14.6 KB · Views: 9
herofox

I modified it using your formula and it worked

It has Simplify what I did.
 

Attachments

  • SPP Numerical sequence between empty cells2.xlsx
    28.2 KB · Views: 9
S P P, good morning.

Check if this is how you want it, without auxiliary column I put the formula in cell S3

Decio
 

Attachments

  • SPP Numerical sequence between empty cells Decio.xlsx
    14.2 KB · Views: 9
I think it is an Excel 2010 solution that is required, but the following should reinforce the extent to which Excel 365 does not depend upon traditional spreadsheet techniques
Code:
= LET(
      array,    TOROW(grid,1),
      distinct, UNIQUE(array,1),
      SORT(distinct,,,1)
  )
That is:
1. convert the 2D grid to a row array;
2. remove duplicates;
3. sort ascending left to right
 

Attachments

  • SPP Numerical sequence between empty cells Decio.xlsx
    13.6 KB · Views: 5
Peter Bartholomew, Good Morning.

Very good formula, I learned one more, thanks for sharing experience

Hugs
 
Back
Top