S S P P Member Jul 11, 2022 #1 Example Attachments SPP Numerical sequence between empty cells.xlsx 12 KB · Views: 10
herofox Active Member Jul 12, 2022 #2 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
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)),"")
S S P P Member Jul 12, 2022 #3 herofox Good Morning! Thanks for the collaboration It worked but the number 15 is repeating
herofox Active Member Jul 12, 2022 #4 This is normal because this number is already duplicated for you, and not only that, but there are several duplicate numbers Last edited: Jul 12, 2022
This is normal because this number is already duplicated for you, and not only that, but there are several duplicate numbers
S S P P Member Jul 12, 2022 #6 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
deciog Active Member Jul 13, 2022 #7 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
S P P, good morning. Check if this is how you want it, without auxiliary column I put the formula in cell S3 Decio
P Peter Bartholomew Well-Known Member Jul 13, 2022 #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: 6
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
deciog Active Member Jul 14, 2022 #11 Peter Bartholomew, Good Morning. Very good formula, I learned one more, thanks for sharing experience Hugs
Peter Bartholomew, Good Morning. Very good formula, I learned one more, thanks for sharing experience Hugs