<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xmlns:tt="http://teletype.in/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:media="http://search.yahoo.com/mrss/"><channel><title>Qlik Sense Expert</title><generator>teletype.in</generator><description><![CDATA[Qlik Sense Developer]]></description><image><url>https://teletype.in/files/7d/7de426bf-68ce-4a22-b7b1-add2f194c0f4.png</url><title>Qlik Sense Expert</title><link>https://teletype.in/@qliksense</link></image><link>https://teletype.in/@qliksense?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=qliksense</link><atom:link rel="self" type="application/rss+xml" href="https://teletype.in/rss/qliksense?offset=0"></atom:link><atom:link rel="next" type="application/rss+xml" href="https://teletype.in/rss/qliksense?offset=10"></atom:link><atom:link rel="search" type="application/opensearchdescription+xml" title="Teletype" href="https://teletype.in/opensearch.xml"></atom:link><pubDate>Thu, 16 Apr 2026 21:45:42 GMT</pubDate><lastBuildDate>Thu, 16 Apr 2026 21:45:42 GMT</lastBuildDate><item><guid isPermaLink="true">https://teletype.in/@qliksense/Transforming-Hypercube-Data-English</guid><link>https://teletype.in/@qliksense/Transforming-Hypercube-Data-English?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=qliksense</link><comments>https://teletype.in/@qliksense/Transforming-Hypercube-Data-English?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=qliksense#comments</comments><dc:creator>qliksense</dc:creator><title>Transforming Hypercube Data - English</title><pubDate>Wed, 25 Aug 2021 20:02:39 GMT</pubDate><category>qliksense</category><description><![CDATA[<img src="https://web.archive.org/web/20210825195850/https://i2.wp.com/whereclause.com/wp-content/uploads/2020/03/transforming-hypercube-data-chart.jpg?w=541&amp;ssl=1"></img>Here are a couple ways to take HyperCube data and transform it into something more useable.]]></description><content:encoded><![CDATA[
  <p>Here are a couple ways to take HyperCube data and transform it into something more useable.</p>
  <h2>Example</h2>
  <h4>Qlik Chart Object</h4>
  <p>This is a simple chart with two dimensions and one measure.</p>
  <figure class="m_original">
    <img src="https://web.archive.org/web/20210825195850/https://i2.wp.com/whereclause.com/wp-content/uploads/2020/03/transforming-hypercube-data-chart.jpg?w=541&ssl=1" width="541" />
  </figure>
  <h4>HyperCube Data Sample</h4>
  <p>The hypercube is the object behind a Qlik chart object. Here is how the chart data is returned by the <code><strong>getHyperCubeData</strong>()</code> API call.</p>
  <figure class="m_original">
    <img src="https://web.archive.org/web/20210825195852/https://i1.wp.com/whereclause.com/wp-content/uploads/2020/03/transforming-hypercube-data-sample.jpg?w=491&ssl=1" width="491" />
  </figure>
  <h4>Row Array</h4>
  <p>This would create an array for each row, where each value in the list is a column value. This is a simple version of a hypercube data set.</p>
  <figure class="m_original">
    <img src="https://web.archive.org/web/20210825195851/https://i2.wp.com/whereclause.com/wp-content/uploads/2020/03/transforming-hypercube-data-row-array.jpg?resize=209%2C164&ssl=1" width="209" />
  </figure>
  <h4>Object</h4>
  <p>This would create a single object, where the dimension fields are the key. This is in my opinion the easiest to work with.</p>
  <figure class="m_original">
    <img src="https://web.archive.org/web/20210825195855/https://i1.wp.com/whereclause.com/wp-content/uploads/2020/03/transforming-hypercube-data-object.jpg?resize=215%2C163&ssl=1" width="215" />
  </figure>
  <h3>Code</h3>
  <pre>/*
    Example:
    Chart has 3 columns (2 Dims, 1 Msr)
    date_num | dim | msr
    ---------|-----|-----
    43556    | B   | 25
    43556    | C   | 26
    ....
*/

data = 

[
  [
    { qText: &#x27;43556&#x27;, qNum: 43556, qElemNumber: 1, qState: &#x27;O&#x27; },
    { qText: &#x27;B&#x27;, qNum: &#x27;NaN&#x27;, qElemNumber: 1, qState: &#x27;O&#x27; },
    { qText: &#x27;25&#x27;, qNum: 25, qElemNumber: 0, qState: &#x27;L&#x27; }
  ],
  [
    { qText: &#x27;43556&#x27;, qNum: 43556, qElemNumber: 1, qState: &#x27;O&#x27; },
    { qText: &#x27;C&#x27;, qNum: &#x27;NaN&#x27;, qElemNumber: 2, qState: &#x27;O&#x27; },
    { qText: &#x27;26&#x27;, qNum: 26, qElemNumber: 0, qState: &#x27;L&#x27; }
  ],
  [
    { qText: &#x27;43556&#x27;, qNum: 43556, qElemNumber: 1, qState: &#x27;O&#x27; },
    { qText: &#x27;D&#x27;, qNum: &#x27;NaN&#x27;, qElemNumber: 0, qState: &#x27;O&#x27; },
    { qText: &#x27;25&#x27;, qNum: 25, qElemNumber: 0, qState: &#x27;L&#x27; }
  ],
  [
    { qText: &#x27;43586&#x27;, qNum: 43586, qElemNumber: 2, qState: &#x27;O&#x27; },
    { qText: &#x27;C&#x27;, qNum: &#x27;NaN&#x27;, qElemNumber: 2, qState: &#x27;O&#x27; },
    { qText: &#x27;25&#x27;, qNum: 25, qElemNumber: 0, qState: &#x27;L&#x27; }
  ],
  [
    { qText: &#x27;43586&#x27;, qNum: 43586, qElemNumber: 2, qState: &#x27;O&#x27; },
    { qText: &#x27;D&#x27;, qNum: &#x27;NaN&#x27;, qElemNumber: 0, qState: &#x27;O&#x27; },
    { qText: &#x27;26&#x27;, qNum: 26, qElemNumber: 0, qState: &#x27;L&#x27; }
  ],
  [
    { qText: &#x27;43617&#x27;, qNum: 43617, qElemNumber: 0, qState: &#x27;O&#x27; },
    { qText: &#x27;B&#x27;, qNum: &#x27;NaN&#x27;, qElemNumber: 1, qState: &#x27;O&#x27; },
    { qText: &#x27;25&#x27;, qNum: 25, qElemNumber: 0, qState: &#x27;L&#x27; }
  ],
  [
    { qText: &#x27;43617&#x27;, qNum: 43617, qElemNumber: 0, qState: &#x27;O&#x27; },
    { qText: &#x27;C&#x27;, qNum: &#x27;NaN&#x27;, qElemNumber: 2, qState: &#x27;O&#x27; },
    { qText: &#x27;26&#x27;, qNum: 26, qElemNumber: 0, qState: &#x27;L&#x27; }
  ],
  [
    { qText: &#x27;43617&#x27;, qNum: 43617, qElemNumber: 0, qState: &#x27;O&#x27; },
    { qText: &#x27;D&#x27;, qNum: &#x27;NaN&#x27;, qElemNumber: 0, qState: &#x27;O&#x27; },
    { qText: &#x27;26&#x27;, qNum: 26, qElemNumber: 0, qState: &#x27;L&#x27; }
  ]
]
    
const rows = []
const rowObj = {}

for (var r in data) {
   let row = data[r]
    values = []
    v = {}

    for (var c in row) {
        values.push(row[c].qNum== &#x27;NaN&#x27; ? row[c].qText : row[c].qNum)
    }

    // Row Array
    rows.push(values)

    // Single Object with dim values as key
    key = values[0]+&quot;|&quot;+values[1]
    rowObj[key] = values[2]

}

console.log(&#x27;\n&#x27;,&#x27;Row Array:&#x27;, &#x27;\n\n&#x27;, rows,&#x27;\n&#x27;)
console.log(&#x27;Object:&#x27;,&#x27;\n\n&#x27;, rowObj,&#x27;\n&#x27;)</pre>
  <p></p>
  <p><strong>Initial Article:</strong> <a href="https://whereclause.com/article/transforming-hypercube-data/" target="_blank">https://whereclause.com/article/transforming-hypercube-data/</a></p>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@qliksense/Natively-Loading-JSON-English</guid><link>https://teletype.in/@qliksense/Natively-Loading-JSON-English?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=qliksense</link><comments>https://teletype.in/@qliksense/Natively-Loading-JSON-English?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=qliksense#comments</comments><dc:creator>qliksense</dc:creator><title>Natively Loading JSON - English</title><pubDate>Wed, 25 Aug 2021 19:50:43 GMT</pubDate><media:content medium="image" url="https://img3.teletype.in/files/2f/91/2f91bfd5-762d-4b79-9763-863e44abda68.jpeg"></media:content><category>qliksense</category><description><![CDATA[<img src="https://web.archive.org/web/20210716120725im_/https://i1.wp.com/whereclause.com/wp-content/uploads/2020/06/52-natively-load-json-raw.jpg?w=867&amp;ssl=1"></img>I want to start this artcile off by mentioning that this only works for flat json, meaning non-nested json hierarchies. It is possible to leverage this for nested json but takes a bit more elbow grease and knowledge of the schema. Since my intention is to keep these posts brief, I’ll save that for a more in-depth stand alone article.]]></description><content:encoded><![CDATA[
  <p>I want to start this artcile off by mentioning that this only works for flat <code>json</code>, meaning non-nested json hierarchies. It is possible to leverage this for nested <code>json</code> but takes a bit more elbow grease and knowledge of the schema. Since my intention is to keep these posts brief, I’ll save that for a more in-depth stand alone article.</p>
  <p>So getting into it, imagine you have a field with <code>json</code> values and we want to convert the <code>json</code> to a table.</p>
  <figure class="m_original">
    <img src="https://web.archive.org/web/20210716120725im_/https://i1.wp.com/whereclause.com/wp-content/uploads/2020/06/52-natively-load-json-raw.jpg?w=867&ssl=1" width="867" />
  </figure>
  <p>What we can do is leverage <a href="https://web.archive.org/web/20210118161418/https://help.qlik.com/en-US/sense/April2020/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptRegularStatements/Load.htm" target="_blank">From_Field</a> and put <code>json</code> for our table format.</p>
  <p><strong>Script</strong></p>
  <figure class="m_original">
    <img src="https://web.archive.org/web/20210617053639im_/https://i2.wp.com/whereclause.com/wp-content/uploads/2020/06/52-natively-load-json-script.jpg?w=802&ssl=1" width="802" />
  </figure>
  <p><strong>Result</strong></p>
  <figure class="m_original">
    <img src="https://web.archive.org/web/20210716120726im_/https://i0.wp.com/whereclause.com/wp-content/uploads/2020/06/52-natively-load-json-from-field-1.jpg?w=811&ssl=1" width="811" />
  </figure>
  <p>We can also directly load a <code>.json</code> file as well. Although, for it to to work it can only be a single flat <code>json</code> structure with no labels or headers.</p>
  <p><strong>Example</strong></p>
  <p></p>
  <figure class="m_original">
    <img src="https://web.archive.org/web/20210617053638im_/https://i2.wp.com/whereclause.com/wp-content/uploads/2020/06/52-natively-load-json-single-json.jpg?w=657&ssl=1" width="657" />
  </figure>
  <p><strong>Script</strong></p>
  <figure class="m_original">
    <img src="https://web.archive.org/web/20210617053638im_/https://i0.wp.com/whereclause.com/wp-content/uploads/2020/06/52-natively-load-json-single-json-script.jpg?w=650&ssl=1" width="650" />
  </figure>
  <p><strong>Result</strong></p>
  <figure class="m_original">
    <img src="https://web.archive.org/web/20210617053659im_/https://i2.wp.com/whereclause.com/wp-content/uploads/2020/06/52-natively-load-json-single-json-1.jpg?w=657&ssl=1" width="657" />
  </figure>
  <p>I find this tip particularly interesting because it isn’t mentioned in Qlik’s documentation. You would expect <code>json</code> to be one of the options <a href="https://web.archive.org/web/20210118161418/https://help.qlik.com/en-US/sense/June2020/Subsystems/Hub/Content/Sense_Hub/Scripting/ScriptSpecifiers/table-format.htm" target="_blank">here</a>, but it’s not. Gotta love Easter eggs.</p>
  <p><strong>Source of Article:</strong> <a href="https://whereclause.com/2020/06/23/52-natively-loading-json/" target="_blank">https://whereclause.com/2020/06/23/52-natively-loading-json/</a></p>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@qliksense/set-analysis-case-bug-or-feature</guid><link>https://teletype.in/@qliksense/set-analysis-case-bug-or-feature?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=qliksense</link><comments>https://teletype.in/@qliksense/set-analysis-case-bug-or-feature?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=qliksense#comments</comments><dc:creator>qliksense</dc:creator><title>Кейс Set Analysis - Баг или Фича?</title><pubDate>Wed, 30 Dec 2020 21:04:50 GMT</pubDate><media:content medium="image" url="https://teletype.in/files/af/80/af80c5c2-be9d-4d35-8b56-55a2c6421818.jpeg"></media:content><category>qlik</category><description><![CDATA[<img src="https://teletype.in/files/01/0a/010abb90-16a6-4904-8648-8e12ce9177f8.png"></img>Разберем небольшой кейс. Источник данных, собранный на коленке:]]></description><content:encoded><![CDATA[
  <h2>Вводная часть</h2>
  <p>Разберем небольшой кейс. Источник данных, собранный на коленке:</p>
  <p>SET1:</p>
  <figure class="m_original">
    <img src="https://teletype.in/files/01/0a/010abb90-16a6-4904-8648-8e12ce9177f8.png" width="214" />
  </figure>
  <p>SET2:</p>
  <figure class="m_original">
    <img src="https://teletype.in/files/6d/50/6d506c11-04a3-4ef9-a593-60bbe5b09e28.png" width="209" />
  </figure>
  <h2>Модель 1</h2>
  <p>Скрипт загрузки:</p>
  <pre>SET1:
LOAD
    ID,
    &quot;Field 1&quot;,
    1 			As [Flag Set 1]
FROM [lib://Source/data.xlsx]
(ooxml, embedded labels, table is SET1);

SET2:
LOAD
    ID,
    &quot;Field 2&quot;,
    1 			As [Flag Set 2]
FROM [lib://Source/data.xlsx]
(ooxml, embedded labels, table is SET2);</pre>
  <p>Скриншот модели:</p>
  <figure class="m_original">
    <img src="https://teletype.in/files/bf/1d/bf1d83c0-1fad-49d9-a83a-e3877d79ef26.png" width="439" />
  </figure>
  <p>Посчитаем количество уникальных ID 4-мя способами:</p>
  <pre>Count(Distinct ID)
Count({&lt;[Flag Set 1]={1}&gt;} Distinct ID)
Count({&lt;[Flag Set 2]={1}&gt;} Distinct ID)
Count({ &lt;[Flag Set 1]={1}&gt; + &lt;[Flag Set 2]={1}&gt; } Distinct ID)</pre>
  <p>Результат:</p>
  <figure class="m_original">
    <img src="https://teletype.in/files/6b/b6/6bb66d5c-c428-40c8-b8b5-86374ecad42c.png" width="700" />
  </figure>
  <h2>Модель 2</h2>
  <p>Меняем одну строку:</p>
  <pre>SET1:
LOAD
    ID,
    &quot;Field 1&quot;,
    1 			As [Flag Set 1]
FROM [lib://Source/data.xlsx]
(ooxml, embedded labels, table is SET1);

Outer Join(SET1)
LOAD
    ID,
    &quot;Field 2&quot;,
    1 			As [Flag Set 2]
FROM [lib://Source/data.xlsx]
(ooxml, embedded labels, table is SET2);</pre>
  <p>Получилась модель данных:</p>
  <figure class="m_original">
    <img src="https://teletype.in/files/5e/fa/5efae7d6-f04a-4b61-84ed-f9cb75f87617.png" width="213" />
  </figure>
  <p>Формулы остаются те же, а результат меняется:</p>
  <figure class="m_original">
    <img src="https://teletype.in/files/93/64/936490b1-d2d0-4ae1-a72a-1b0b9d840f12.png" width="633" />
  </figure>
  <h2>Модель 3</h2>
  <p>Скрипт:</p>
  <pre>SET1:
LOAD
    ID,
    &quot;Field 1&quot;
FROM [lib://Source/data.xlsx]
(ooxml, embedded labels, table is SET1);

SET2:
LOAD
    ID,
    &quot;Field 2&quot;
FROM [lib://Source/data.xlsx]
(ooxml, embedded labels, table is SET2);

//==============================

Dim1:
LOAD
    ID,
    1 			As [Flag Set 1]
FROM [lib://Source/data.xlsx]
(ooxml, embedded labels, table is SET1);

Dim2:
LOAD
    ID,
    1 			As [Flag Set 2]
FROM [lib://Source/data.xlsx]
(ooxml, embedded labels, table is SET2);</pre>
  <p>Модель данных:</p>
  <figure class="m_original">
    <img src="https://teletype.in/files/a9/40/a9402f77-ce2e-4348-b4db-1e48f7ee004c.png" width="394" />
  </figure>
  <p>Результат работы:</p>
  <figure class="m_original">
    <img src="https://teletype.in/files/d3/c8/d3c8f48d-fc76-432b-af2a-952f160f16d6.png" width="674" />
  </figure>
  <h2>Модель 4</h2>
  <p>Скрипт:</p>
  <pre>SET1:
LOAD
    ID,
    &quot;Field 1&quot;
FROM [lib://Source/data.xlsx]
(ooxml, embedded labels, table is SET1);

SET2:
LOAD
    ID,
    &quot;Field 2&quot;
FROM [lib://Source/data.xlsx]
(ooxml, embedded labels, table is SET2);


DIM:
LOAD
    ID,
    1 			As [Flag Set 1]
FROM [lib://Source/data.xlsx]
(ooxml, embedded labels, table is SET1);

Concatenate(DIM)
LOAD
    ID,
    1 			As [Flag Set 2]
FROM [lib://Source/data.xlsx]
(ooxml, embedded labels, table is SET2);</pre>
  <p>Модель данных:</p>
  <figure class="m_original">
    <img src="https://teletype.in/files/b2/ba/b2ba79cb-91b0-4e4f-ae91-8c2c3204c1ba.png" width="657" />
  </figure>
  <p>Результат работы:</p>
  <figure class="m_original">
    <img src="https://teletype.in/files/3a/e7/3ae7c898-bfb7-441e-91a3-8365838a7948.png" width="681" />
  </figure>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@qliksense/JavaScript-Export-Table-to-Excel</guid><link>https://teletype.in/@qliksense/JavaScript-Export-Table-to-Excel?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=qliksense</link><comments>https://teletype.in/@qliksense/JavaScript-Export-Table-to-Excel?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=qliksense#comments</comments><dc:creator>qliksense</dc:creator><title>JavaScript Export Table to Excel</title><pubDate>Tue, 13 Oct 2020 16:40:14 GMT</pubDate><media:content medium="image" url="https://teletype.in/files/b0/14/b014b49c-b05d-4fe6-8467-b60fb827970a.png"></media:content><category>javascript</category><description><![CDATA[<img src="https://teletype.in/files/a3/cf/a3cfc720-e6b1-40de-b9b0-f1a4c981a33b.jpeg"></img>Я сделал подборку библиотек JS, которые пригодятся как для разработки mashup, так и для разработки extensions.]]></description><content:encoded><![CDATA[
  <figure class="m_original">
    <img src="https://teletype.in/files/a3/cf/a3cfc720-e6b1-40de-b9b0-f1a4c981a33b.jpeg" width="1080" />
  </figure>
  <p>Я сделал подборку библиотек JS, которые пригодятся как для разработки mashup, так и для разработки extensions.</p>
  <ul>
    <li><a href="https://tableexport.v5.travismclarke.com/" target="_blank">https://tableexport.v5.travismclarke.com/</a> - The simple, easy-to-implement library to export HTML tables to <code>xlsx</code>, <code>xls</code>, <code>csv</code>, and <code>txt</code> files.</li>
    <li><a href="https://github.com/exceljs/exceljs" target="_blank">https://github.com/exceljs/exceljs</a> - Read, manipulate and write spreadsheet data and styles to XLSX and JSON. Reverse engineered from Excel spreadsheet files as a project.</li>
  </ul>
  <ul>
    <li><a href="https://www.grapecity.com/blogs/how-to-importexport-excel-files-using-javascript-and-spread-sheets" target="_blank">https://www.grapecity.com/blogs/how-to-importexport-excel-files-using-javascript-and-spread-sheets</a> - на основе SpreadJS (платная, есть 30 дневная триальная версия)</li>
    <li><a href="https://github.com/jmaister/excellentexport" target="_blank">https://github.com/jmaister/excellentexport</a> - JavaScript export to Excel or CSV. A quick JavaScript library to create export to Excel/CSV from HTML tables in the browser. No server required.</li>
    <li><a href="https://bootstrap-table.com/" target="_blank">https://bootstrap-table.com/</a> - Bootstrap Table. An extended table to the integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)</li>
    <li><a href="https://redstapler.co/sheetjs-tutorial-create-xlsx/" target="_blank">https://redstapler.co/sheetjs-tutorial-create-xlsx/</a> - SheetJS Tutorial – Create xlsx with Javascript. <a href="https://sheetjs.com/" target="_blank">https://sheetjs.com/</a> - Read, edit, and export spreadsheets. Works in web browsers and servers. Trusted by Office 365. Платная, сколько стоит не ясно. Есть триальная версия неограниченная по времени, но без стилей.</li>
    <li><a href="https://www.npmjs.com/package/exceljs" target="_blank">https://www.npmjs.com/package/exceljs</a> - Read, manipulate and write spreadsheet data and styles to XLSX and JSON. Reverse engineered from Excel spreadsheet files as a project.</li>
  </ul>
  <ul>
    <li><a href="https://github.com/ecscstatsconsulting/js-excel-generator" target="_blank">https://github.com/ecscstatsconsulting/js-excel-generator</a> - A JavaScript Library for creating Excel Spreadsheets from HTML Tables.</li>
    <li><a href="https://www.npmjs.com/package/xlsx-style" target="_blank">https://www.npmjs.com/package/xlsx-style</a> - Parser and writer for various spreadsheet formats. Pure-JS cleanroom implementation from official specifications and related documents.</li>
    <li><a href="https://www.igniteui.com/javascript-excel-library/overview" target="_blank">https://www.igniteui.com/javascript-excel-library/overview</a> - The Infragistics Ignite UI for jQuery JavaScript Excel library provides the same extensive Excel document object model found in our rich client and server Excel engines right there in the browser (or any JS runtime, like Node).</li>
    <li><a href="https://www.geeksforgeeks.org/how-to-convert-html-table-into-excel-spreadsheet-using-jquery/" target="_blank">https://www.geeksforgeeks.org/how-to-convert-html-table-into-excel-spreadsheet-using-jquery/</a> - Any HTML table that you have created can be converted into an Excel Spreadsheet by using jQuery and it is compatible with all browsers. There are two simple approaches that require basic HTML and jQuery knowledge to achieve this. Разбор примера на основе <a href="https://github.com/rainabba/jquery-table2excel" target="_blank">https://github.com/rainabba/jquery-table2excel</a></li>
    <li><a href="https://www.c-sharpcorner.com/article/reading-a-excel-file-using-html5-jquery/" target="_blank">https://www.c-sharpcorner.com/article/reading-a-excel-file-using-html5-jquery/</a> - In this article, we will learn how to read an Excel file from the client-side and display its contents in an HTML table by making use of the FileReader() API in HTML5 &amp; jQuery.</li>
    <li><a href="https://jspreadsheets.com/" target="_blank">https://jspreadsheets.com/</a> - подборка <em>Best JavaScript Data Grids and Spreadsheets</em></li>
    <li><a href="https://medium.com/better-programming/convert-json-to-xlsx-file-in-javascript-e7611a975916" target="_blank">https://medium.com/better-programming/convert-json-to-xlsx-file-in-javascript-e7611a975916</a> - Convert your JSON into a .xlsx file and save it</li>
  </ul>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@qliksense/lesson-1-registration-Qlik-Sense-Business-Cloud</guid><link>https://teletype.in/@qliksense/lesson-1-registration-Qlik-Sense-Business-Cloud?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=qliksense</link><comments>https://teletype.in/@qliksense/lesson-1-registration-Qlik-Sense-Business-Cloud?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=qliksense#comments</comments><dc:creator>qliksense</dc:creator><title>Урок 1. Регистрация в Qlik Sense Business Cloud. Как начать работать с Qlik в облачном сервисе?</title><pubDate>Mon, 12 Oct 2020 21:02:15 GMT</pubDate><category>данные</category><description><![CDATA[https://t.me/qlik_insight - telegram канал - пишу про Qlik Sense как есть на самом деле, критикую, что-то хвалю, делюсь обучающими материалами.]]></description><content:encoded><![CDATA[
  <p><a href="https://t.me/qlik_insight" target="_blank">https://t.me/qlik_insight</a> - telegram канал - пишу про Qlik Sense как есть на самом деле, критикую, что-то хвалю, делюсь обучающими материалами.</p>
  <figure class="m_column">
    <iframe src="https://www.youtube.com/embed/G_rflkDEn_4?autoplay=0&loop=0&mute=0"></iframe>
    <figcaption>Урок 1. Регистрация в Qlik Sense Business Cloud. Как начать работать с Qlik в облачном сервисе? В этом уроке будет описан процесс создания аккаунта в облачном сервисе Qlik Sense Business Cloud.</figcaption>
  </figure>

]]></content:encoded></item><item><guid isPermaLink="true">https://teletype.in/@qliksense/qs-desktop-and-cloud</guid><link>https://teletype.in/@qliksense/qs-desktop-and-cloud?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=qliksense</link><comments>https://teletype.in/@qliksense/qs-desktop-and-cloud?utm_source=teletype&amp;utm_medium=feed_rss&amp;utm_campaign=qliksense#comments</comments><dc:creator>qliksense</dc:creator><title>Как скачать актуальную версию Qlik Sense Desktop и войти через Cloud?</title><pubDate>Thu, 01 Oct 2020 21:46:24 GMT</pubDate><media:content medium="image" url="https://teletype.in/files/36/02/3602df5b-59da-469d-8343-e41c2dfe443b.png"></media:content><category>qlik</category><description><![CDATA[<img src="https://teletype.in/files/36/02/3602df5b-59da-469d-8343-e41c2dfe443b.png"></img>В этой заметке я покажу, как скачать последнюю версию QS Desktop и авторизоваться под облачной учеткой.]]></description><content:encoded><![CDATA[
  <p>В этой заметке я покажу, как скачать последнюю версию QS Desktop и авторизоваться под облачной учеткой.</p>
  <p>Заходим в ваше облако, либо регистрируемся (доступ триал дается на 30 дней, можно потом смело снова зарегистрироваться, пока клик с множественными регистрациями не борется, к счастью).</p>
  <figure class="m_original">
    <img src="https://teletype.in/files/36/02/3602df5b-59da-469d-8343-e41c2dfe443b.png" width="1274" />
  </figure>
  <p>Вверху страницы нажимаем кнопку на профиль (см. 1), далее переходим в Settings.</p>
  <figure class="m_original">
    <img src="https://teletype.in/files/59/f6/59f6d034-3973-4b0f-9dab-19750564bde7.png" width="1003" />
  </figure>
  <p>Первая ссылка-кнопка позволяет скачать актуальную версию Qlik Sense Desktop.</p>
  <p>Скачайте, установите, запустите. Далее нажмите вторую ссылку, которая свяжет ваш desktop с облаком.</p>
  <figure class="m_original">
    <img src="https://teletype.in/files/1c/1d/1c1d0e48-b529-41bc-b8b7-66e4c7d956c0.png" width="805" />
  </figure>
  <p>В десктопе появится такая вот кнопка, жмете на нее, далее вбиваете логин и пароль от облака и используете десктоп. После истечения логина снова регистрируетесь, нажимаете на кнопку и у Вас опять активный десктоп.</p>

]]></content:encoded></item></channel></rss>