<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Auto generate fixed nbr of columns and rows? in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1519632#M37132</link>
    <description>&lt;P&gt;For me it worked:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ColumnRowMatrix.JPG" style="width: 68px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/2017iC8055C79342B05D7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ColumnRowMatrix.JPG" alt="ColumnRowMatrix.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If you are missing the Z's then it might be caused from differences between my default regional-settings (OS) and/or the used char-sets respectively collation-settings and your configurations. Maybe you could adjust them in any way.&lt;/P&gt;&lt;P&gt;Deducing from this it indicates that in your char-list is any additional/different char compared to my "standard" alphabet. To know it might be useful for any adjusting approaches to the settings.&lt;/P&gt;&lt;P&gt;An alternatively might be just to increase the number of chars by using 27 instead of 26, like:&lt;/P&gt;&lt;PRE&gt;t1: load *, 1 as ID, chr(64 + if(Cluster = 1, null(), Cluster -1)) &amp;amp; &lt;BR /&gt;                     chr(64 + recno() - ((Cluster - 1) * &lt;STRONG&gt;27&lt;/STRONG&gt;)) as Column;
    load ceil(recno() / &lt;STRONG&gt;27&lt;/STRONG&gt;) as Cluster autogenerate 141;&lt;/PRE&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
    <pubDate>Wed, 12 Dec 2018 08:09:36 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2018-12-12T08:09:36Z</dc:date>
    <item>
      <title>Auto generate fixed nbr of columns and rows?</title>
      <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518913#M37078</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is a floor with the dimension 141 * 50 ( lenght * breath).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create a table that resembles the above floor&amp;nbsp; wihth 141 columns and 50 rows.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The column should start with A,B........AB,AC.......so on and the rows should start from 1 to&amp;nbsp;50.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In essence I'm trying to create a grid using a table object&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 21:44:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518913#M37078</guid>
      <dc:creator>swarup_malli</dc:creator>
      <dc:date>2024-11-16T21:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: Auto generate fixed nbr of columns and rows?</title>
      <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518983#M37080</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;You can use a Synthetic dimension with ValueLoop expression to create the grid.&lt;BR /&gt;More o less is like a waffle chart like this &lt;A href="https://qvdesign.wordpress.com/2012/02/16/new-qlikview-proportional-waffle-charts/" target="_blank"&gt;https://qvdesign.wordpress.com/2012/02/16/new-qlikview-proportional-waffle-charts/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Other solution will be generate the set of data in the script using a loop.&lt;BR /&gt;&lt;BR /&gt;Ag+</description>
      <pubDate>Tue, 11 Dec 2018 06:41:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518983#M37080</guid>
      <dc:creator>albert_guito</dc:creator>
      <dc:date>2018-12-11T06:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Auto generate fixed nbr of columns and rows?</title>
      <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518984#M37081</link>
      <description>&lt;P&gt;Are you trying to always explicitly generate the floor diagram with these dimensions? If so then the script below will generate a table called FloorDiagram. This contains the data for your 50 x 141 cell grid.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then create a Pivot Table as follows:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;RowNum as the Row Dimension&lt;/LI&gt;&lt;LI&gt;ColCode as the Column Dimension&lt;/LI&gt;&lt;LI&gt;Whatever you need as your measure. I don't know what you want in the cell, so I just used &amp;nbsp;a constant &amp;nbsp;as the Measure.&lt;/LI&gt;&lt;LI&gt;Change the Sorting on ColCode to only Sort Numerically, Ascending.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I've attached a partial screen shot of the resulting pivot table and the data and sorting sections.&lt;/P&gt;&lt;P&gt;Here is the script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;CharMap:
Mapping Load * Inline [
Num, Char
01,A
02,B
03,C
04,D
05,E
06,F
07,G
08,H
09,I
10,J
11,K
12,L
13,M
14,N
15,O
16,P
17,Q
18,R
19,S
20,T
21,U
22,V
23,W
24,X
25,Y
26,Z
];

Columns:
Load 
    1 as Key,
    If(RowNo() &amp;lt; 27,
        MapSubString('CharMap',
	    If(RowNo() &amp;lt; 10,
    	        '0' &amp;amp; RowNo(),
        	    RowNo()
             )
        ),	
	MapSubString('CharMap',
	    If(Floor(RowNo() / 26) - If(Mod(RowNo(), 26) = 0, 1, 0) &amp;lt; 10,
    	      '0' &amp;amp; (Floor(RowNo() / 26) - If(Mod(RowNo(), 26) = 0, 1, 0)),
              Floor(RowNo() / 26) - If(Mod(RowNo(), 26) = 0, 1, 0)
              )
        ) &amp;amp;
	MapSubString('CharMap', 
	    If(Mod(RowNo(), 26) &amp;lt; 10,
    	      '0' &amp;amp; (Mod(RowNo(), 26) + If(Mod(RowNo(), 26) = 0, 1, 0)),
              Mod(RowNo(), 26)
              )
        )
     ) as ColCode,
     RowNo() as ColOrder
AutoGenerate 141;

FloorDiagram:
Load
    RowNo() as RowNum,
    1 as Key
AutoGenerate 50;

FloorDiagram:
Left Join (FloorDiagram)
Load 
    Key,
    Dual(ColCode, ColOrder) as ColCode
Resident Columns;

Drop Field Key From FloorDiagram;

Drop Table Columns;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 06:50:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518984#M37081</guid>
      <dc:creator>lblumenfeld</dc:creator>
      <dc:date>2018-12-11T06:50:26Z</dc:date>
    </item>
    <item>
      <title>Re: Auto generate fixed nbr of columns and rows?</title>
      <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518986#M37082</link>
      <description>&lt;P&gt;Are you trying to always explicitly generate the floor diagram with these dimensions? If so then the script below will generate a table called FloorDiagram. This contains the data for your 50 x 141 cell grid.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then create a Pivot Table as follows:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;RowNum as the Row Dimension&lt;/LI&gt;&lt;LI&gt;ColCode as the Column Dimension&lt;/LI&gt;&lt;LI&gt;Whatever you need as your measure. I don't know what you want in the cell, so I just used &amp;nbsp;a constant &amp;nbsp;as the Measure.&lt;/LI&gt;&lt;LI&gt;Change the Sorting on ColCode to only Sort Numerically, Ascending.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I've attached a partial screen shot of the resulting pivot table and the data and sorting sections.&lt;/P&gt;&lt;P&gt;Here is the script.&lt;/P&gt;&lt;PRE&gt;CharMap:
Mapping Load * Inline [
Num, Char
01,A
02,B
03,C
04,D
05,E
06,F
07,G
08,H
09,I
10,J
11,K
12,L
13,M
14,N
15,O
16,P
17,Q
18,R
19,S
20,T
21,U
22,V
23,W
24,X
25,Y
26,Z
];

Columns:
Load 
    1 as Key,
    If(RowNo() &amp;lt; 27,
        MapSubString('CharMap',
	    If(RowNo() &amp;lt; 10,
    	        '0' &amp;amp; RowNo(),
        	    RowNo()
             )
        ),	
	MapSubString('CharMap',
	    If(Floor(RowNo() / 26) - If(Mod(RowNo(), 26) = 0, 1, 0) &amp;lt; 10,
    	      '0' &amp;amp; (Floor(RowNo() / 26) - If(Mod(RowNo(), 26) = 0, 1, 0)),
              Floor(RowNo() / 26) - If(Mod(RowNo(), 26) = 0, 1, 0)
              )
        ) &amp;amp;
	MapSubString('CharMap', 
	    If(Mod(RowNo(), 26) &amp;lt; 10,
    	      '0' &amp;amp; (Mod(RowNo(), 26) + If(Mod(RowNo(), 26) = 0, 1, 0)),
              Mod(RowNo(), 26)
              )
        )
     ) as ColCode,
     RowNo() as ColOrder
AutoGenerate 141;

FloorDiagram:
Load
    RowNo() as RowNum,
    1 as Key
AutoGenerate 50;

FloorDiagram:
Left Join (FloorDiagram)
Load 
    Key,
    Dual(ColCode, ColOrder) as ColCode
Resident Columns;

Drop Field Key From FloorDiagram;

Drop Table Columns;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Dec 2018 06:52:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518986#M37082</guid>
      <dc:creator>lblumenfeld</dc:creator>
      <dc:date>2018-12-11T06:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Auto generate fixed nbr of columns and rows?</title>
      <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518988#M37083</link>
      <description>&lt;P&gt;Are you trying to always explicitly generate the floor diagram with these dimensions? If so then the script below will generate a table called FloorDiagram. This contains the data for your 50 x 141 cell grid.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then create a Pivot Table as follows:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;RowNum as the Row Dimension&lt;/LI&gt;&lt;LI&gt;ColCode as the Column Dimension&lt;/LI&gt;&lt;LI&gt;Whatever you need as your measure. I don't know what you want in the cell, so I just used &amp;nbsp;a constant &amp;nbsp;as the Measure.&lt;/LI&gt;&lt;LI&gt;Change the Sorting on ColCode to only Sort Numerically, Ascending.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I've attached a partial screen shot of the resulting pivot table and the data and sorting sections.&lt;/P&gt;&lt;P&gt;Here is the script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;CharMap:
Mapping Load * Inline [
Num, Char
01,A
02,B
03,C
04,D
05,E
06,F
07,G
08,H
09,I
10,J
11,K
12,L
13,M
14,N
15,O
16,P
17,Q
18,R
19,S
20,T
21,U
22,V
23,W
24,X
25,Y
26,Z
];

Columns:
Load 
    1 as Key,
    If(RowNo() &amp;lt; 27,
        MapSubString('CharMap',
	    If(RowNo() &amp;lt; 10,
    	        '0' &amp;amp; RowNo(),
        	    RowNo()
             )
        ),	
	MapSubString('CharMap',
	    If(Floor(RowNo() / 26) - If(Mod(RowNo(), 26) = 0, 1, 0) &amp;lt; 10,
    	      '0' &amp;amp; (Floor(RowNo() / 26) - If(Mod(RowNo(), 26) = 0, 1, 0)),
              Floor(RowNo() / 26) - If(Mod(RowNo(), 26) = 0, 1, 0)
              )
        ) &amp;amp;
	MapSubString('CharMap', 
	    If(Mod(RowNo(), 26) &amp;lt; 10,
    	      '0' &amp;amp; (Mod(RowNo(), 26) + If(Mod(RowNo(), 26) = 0, 1, 0)),
              Mod(RowNo(), 26)
              )
        )
     ) as ColCode,
     RowNo() as ColOrder
AutoGenerate 141;

FloorDiagram:
Load
    RowNo() as RowNum,
    1 as Key
AutoGenerate 50;

FloorDiagram:
Left Join (FloorDiagram)
Load 
    Key,
    Dual(ColCode, ColOrder) as ColCode
Resident Columns;

Drop Field Key From FloorDiagram;

Drop Table Columns;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Dec 2018 06:57:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518988#M37083</guid>
      <dc:creator>lblumenfeld</dc:creator>
      <dc:date>2018-12-11T06:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Auto generate fixed nbr of columns and rows?</title>
      <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518990#M37084</link>
      <description>&lt;P&gt;Are you trying to always explicitly generate the floor diagram with these dimensions? If so then the script below will generate a table called FloorDiagram. This contains the data for your 50 x 141 cell grid.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then create a Pivot Table as follows:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;RowNum as the Row Dimension&lt;/LI&gt;&lt;LI&gt;ColCode as the Column Dimension&lt;/LI&gt;&lt;LI&gt;Whatever you need as your measure. I don't know what you want in the cell, so I just used &amp;nbsp;a constant &amp;nbsp;as the Measure.&lt;/LI&gt;&lt;LI&gt;Change the Sorting on ColCode to only Sort Numerically, Ascending.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I've attached a partial screen shot of the resulting pivot table.&lt;/P&gt;&lt;P&gt;Here is the script.&lt;/P&gt;&lt;PRE&gt;CharMap:
Mapping Load * Inline [
Num, Char
01,A
02,B
03,C
04,D
05,E
06,F
07,G
08,H
09,I
10,J
11,K
12,L
13,M
14,N
15,O
16,P
17,Q
18,R
19,S
20,T
21,U
22,V
23,W
24,X
25,Y
26,Z
];

Columns:
Load 
    1 as Key,
    If(RowNo() &amp;lt; 27,
        MapSubString('CharMap',
	    If(RowNo() &amp;lt; 10,
    	        '0' &amp;amp; RowNo(),
        	    RowNo()
             )
        ),	
	MapSubString('CharMap',
	    If(Floor(RowNo() / 26) - If(Mod(RowNo(), 26) = 0, 1, 0) &amp;lt; 10,
    	      '0' &amp;amp; (Floor(RowNo() / 26) - If(Mod(RowNo(), 26) = 0, 1, 0)),
              Floor(RowNo() / 26) - If(Mod(RowNo(), 26) = 0, 1, 0)
              )
        ) &amp;amp;
	MapSubString('CharMap', 
	    If(Mod(RowNo(), 26) &amp;lt; 10,
    	      '0' &amp;amp; (Mod(RowNo(), 26) + If(Mod(RowNo(), 26) = 0, 1, 0)),
              Mod(RowNo(), 26)
              )
        )
     ) as ColCode,
     RowNo() as ColOrder
AutoGenerate 141;

FloorDiagram:
Load
    RowNo() as RowNum,
    1 as Key
AutoGenerate 50;

FloorDiagram:
Left Join (FloorDiagram)
Load 
    Key,
    Dual(ColCode, ColOrder) as ColCode
Resident Columns;

Drop Field Key From FloorDiagram;

Drop Table Columns;&lt;/PRE&gt;</description>
      <pubDate>Tue, 11 Dec 2018 07:00:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518990#M37084</guid>
      <dc:creator>lblumenfeld</dc:creator>
      <dc:date>2018-12-11T07:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: Auto generate fixed nbr of columns and rows?</title>
      <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518991#M37085</link>
      <description>&lt;P&gt;Here is the attachment. The editor wasn't letting me add it to the prior post.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 07:01:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1518991#M37085</guid>
      <dc:creator>lblumenfeld</dc:creator>
      <dc:date>2018-12-11T07:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Auto generate fixed nbr of columns and rows?</title>
      <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1519051#M37088</link>
      <description>&lt;P&gt;If you don't need just a two column-table which you expand within a pivot else a real table within the datamodel you could use something like this:&lt;/P&gt;&lt;PRE&gt;t1: load *, 1 as ID, chr(64 + if(Cluster = 1, null(), Cluster -1)) &amp;amp; &lt;BR /&gt;                     chr(64 + recno() - ((Cluster - 1) * 26)) as Column;
    load ceil(recno() / 26) as Cluster autogenerate 141;

t2: generic load 1 as ID, recno() as Row, 'X' as Dummy autogenerate 50;

for i = nooftables() to 0 step -1
	let vTable = tablename($(i));
	if left('$(vTable)', 2) = 't2' then
		left join (t1) load * resident $(vTable);
		drop tables $(vTable);
	end if
next &lt;/PRE&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 09:10:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1519051#M37088</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-12-11T09:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Auto generate fixed nbr of columns and rows?</title>
      <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1519396#M37114</link>
      <description>&lt;P&gt;Thank you Guys..appreciate your help.I'll&amp;nbsp; get back to you all after testing the code&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 15:49:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1519396#M37114</guid>
      <dc:creator>swarup_malli</dc:creator>
      <dc:date>2018-12-11T15:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Auto generate fixed nbr of columns and rows?</title>
      <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1519464#M37122</link>
      <description>&lt;P&gt;Worked like a charm.&amp;nbsp;Thank you&amp;nbsp; guys for the help.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 17:56:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1519464#M37122</guid>
      <dc:creator>swarup_malli</dc:creator>
      <dc:date>2018-12-11T17:56:46Z</dc:date>
    </item>
    <item>
      <title>Re: Auto generate fixed nbr of columns and rows?</title>
      <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1519548#M37128</link>
      <description>In the generated series i do not see AZ , BZ,CZ.....IZ..&lt;BR /&gt;&lt;BR /&gt;Instead AY is followed by AA .. same for BY which is followed by BA.&lt;BR /&gt;</description>
      <pubDate>Wed, 12 Dec 2018 01:27:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1519548#M37128</guid>
      <dc:creator>swarup_malli</dc:creator>
      <dc:date>2018-12-12T01:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Auto generate fixed nbr of columns and rows?</title>
      <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1519632#M37132</link>
      <description>&lt;P&gt;For me it worked:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ColumnRowMatrix.JPG" style="width: 68px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/2017iC8055C79342B05D7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ColumnRowMatrix.JPG" alt="ColumnRowMatrix.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If you are missing the Z's then it might be caused from differences between my default regional-settings (OS) and/or the used char-sets respectively collation-settings and your configurations. Maybe you could adjust them in any way.&lt;/P&gt;&lt;P&gt;Deducing from this it indicates that in your char-list is any additional/different char compared to my "standard" alphabet. To know it might be useful for any adjusting approaches to the settings.&lt;/P&gt;&lt;P&gt;An alternatively might be just to increase the number of chars by using 27 instead of 26, like:&lt;/P&gt;&lt;PRE&gt;t1: load *, 1 as ID, chr(64 + if(Cluster = 1, null(), Cluster -1)) &amp;amp; &lt;BR /&gt;                     chr(64 + recno() - ((Cluster - 1) * &lt;STRONG&gt;27&lt;/STRONG&gt;)) as Column;
    load ceil(recno() / &lt;STRONG&gt;27&lt;/STRONG&gt;) as Cluster autogenerate 141;&lt;/PRE&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 08:09:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1519632#M37132</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-12-12T08:09:36Z</dc:date>
    </item>
    <item>
      <title>Re: Auto generate fixed nbr of columns and rows?</title>
      <link>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1519908#M37163</link>
      <description>&lt;P&gt;Thank you again Marcus!&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 14:45:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Auto-generate-fixed-nbr-of-columns-and-rows/m-p/1519908#M37163</guid>
      <dc:creator>swarup_malli</dc:creator>
      <dc:date>2018-12-12T14:45:23Z</dc:date>
    </item>
  </channel>
</rss>

