Alternate Number Positions

cotech_10

Board Regular
Joined
Sep 11, 2010
Messages
135
Office Version
  1. 2016
Platform
  1. Windows
Hi All I would like to do the following


SCENARIO 1:

I would like to produce output based on alternate step factors for identifying and collecting data from a Numbers Table


From this Table I would like to produce an output based on an alternate step factor

For example in the Figure below I have a Numbers Table that has 25 Rows and 9 columns (please note that a Table can be any number of Rows and Columns)
and I am using what is called a step factor of 6:3 movement


alternate_excelboard.xlsm
ABCDEFGHIJKLMNOPQRSTUVWX
1Every Nth Factor - AlternateOUTPUT
210047913152311103340Row23140231092633362477
3230Column1997720362213264240
417202223
556001024629344243Overlap77362640
69141626
7137
8323845
93399
10993641
11213139
1211
13
14
1524
16
176
18
19
20
21
22
23
2427
25
2677
27
Sheet1


The analysis works in this way:

Initially we move in a horizontal or row direction from left to right in the first cell of the Table and the first 6th factor position is identified, in this example that number is 231 which is highlighted and coloured in yellow. Then processing of the next step factor of 3 is done which will move 3 number positions and the resultant number 40 is highlighted and coloured yellow. The step process returns back to the first step factor of 6 and moves 6 positions in a horizontal direction so the next number to be highlighted will be 40 and coloured yellow. The step factor of 3 is computed and will result in the number 23 identified and highlighted in yellow…. This continues on until the table has been completed resulting in the following number group:



Row: 231, 40, 23, 10, 9, 26, 33, 36, 24, 77

Output can be written to the right of the Table as per Figure 1

The next part of this exercise is for this process to be run in vertical or column mode. Applying the same step factor of 6:3 and calculating in the same way as it has done for horizontal/row mode (except the colouration of numbers will be green) the following Output Number group would be as follows:

Column: 1, 99, 77, 20, 36, 22, 13, 26, 42, 40

Where numbers overlap in a horizontal and vertical mode they have been coloured blue. In this example the numbers 77, 36, 26, 40 have been coloured blue as they overlap.



The overlap numbers output will also be written to the left of the Table as per Figure 1

Overlap: 77, 36, 26, 40



SCNEARIO 2:


I would like to be able also to apply any step factor configuration, however in some step factor combinations the division will not be even and will result in “leftover” numbers

If I have a Numbers Table that has 45 numbers and I apply the same step factor process as outlined in scenario 1 BUT I use a step factor of 10:3 the following Table scenario would look like Figure 2 :


alternate_excelboard.xlsm
ABCDEFGHIJKLMNOPQRST
1Every Nth Factor - AlternateOUTPUT
210047913152311103340Row22043163631
3230Column216997926231
417202223
556001024629344243Overlap
69141626
7137
8323845
93399
10993641
11213139
1211
13
14
1524
16
176
18
19
20
21
22
23
2427
25
2677
27
Sheet1 (2)



All horizontal row numbers calculated have been highlighted in yellow

All vertical column numbers have been highlighted in green

There are no overlapping numbers

In this example the output of this calculation would result in the following number groups

Row
2​
20​
43​
16​
36​
31​
Column
21​
6​
99​
79​
26​
231​
Overlap

I look forward in hearing from someone

Much appreciated
 
No as this is not the worksheet module !​
Or add Activesheet. just before UsedRange …​
 
Upvote 0

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hi Marcelo,

I tried your recommendation and added "Activesheet". just before UsedRange …

That seemed to work... not fully but enough to get what I want out of this...
 
Upvote 0
[Edit: OK jokes on me not realizing your office version, this works only in O365.]

Formula option:

Test.xlsx
ABCDEFGHIJKLMNOPQRSTUVWX
1Every Nth Factor - AlternateOUTPUT
210047913152311103340Steps63
3230Row23140231092633362477
417202223Column1997720362213264240
556001024629344243
69141626Overlap40263677
7137
8323845
93399
10993641
11213139
1211
13
14
1524
16
176
18
19
20
21
22
23
2427
25
2677
Sheet1
Cell Formulas
RangeFormula
N3:W3N3=LET( n,INT(COUNT($B$2:$J$26)/SUM($N$2:$O$2))*2+INT(MOD(COUNT($B$2:$J$26),SUM($N$2:$O$2))/$N$2), Strg,TEXTJOIN(",",1,IF($B$2:$J$26<>"",TEXT($B$2:$J$26,"0000"),"")), VALUE(MID(Strg,((INT(SEQUENCE(,n)/2)+MOD(SEQUENCE(,n),2))*$N$2+(INT((SEQUENCE(,n)-1)/2)+MOD(SEQUENCE(,n)-1,2))*$O$2-1)*5+1,4)) )
N4:W4N4=LET( n,INT(COUNT($B$2:$J$26)/SUM($N$2:$O$2))*2+INT(MOD(COUNT($B$2:$J$26),SUM($N$2:$O$2))/$N$2), Strg,TEXTJOIN(",",1,IF(TRANSPOSE($B$2:$J$26)<>"",TEXT(TRANSPOSE($B$2:$J$26),"0000"),"")), VALUE(MID(Strg,((INT(SEQUENCE(,n)/2)+MOD(SEQUENCE(,n),2))*$N$2+(INT((SEQUENCE(,n)-1)/2)+MOD(SEQUENCE(,n)-1,2))*$O$2-1)*5+1,4)) )
N6:W6N6=IFERROR(INDEX(N3#,,AGGREGATE(15,6,COLUMN(N3#)/ISNUMBER(MATCH(N3#,N4#,0)),SEQUENCE(,COUNT(N3#)))-COLUMN()+1),"")
Dynamic array formulas.
Cells with Conditional Formatting
CellConditionCell FormatStop If True
B2:J26Expression=ISNUMBER(MATCH(B2,$N$6#,0))textNO
B2:J26Expression=ISNUMBER(MATCH(B2,$N$4#,0))textNO
B2:J26Expression=ISNUMBER(MATCH(B2,$N$3#,0))textNO
 
Upvote 0
Hi Marcelo,

I tried your recommendation and added "Activesheet". just before UsedRange …

That seemed to work... not fully but enough to get what I want out of this...
First well read at least as I'm not Marcelo ‼​
As my code fully works according to your initial post getting same results as yours …​
 
Upvote 0

Forum statistics

Threads
1,214,589
Messages
6,120,415
Members
448,960
Latest member
AKSMITH

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