<?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: Calculated Dimension in Straight Table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calculated-Dimension-in-Straight-Table/m-p/1620206#M734255</link>
    <description>&lt;P&gt;Hi Dilipranjith,&lt;/P&gt;&lt;P&gt;Thank you so much for the solutions. I am very tempted to accept as the solutions i needed but i was trying to do it on the UI(Chart) side.&amp;nbsp; Is there any way we could do it in the chart as a Conditional dimensions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;BC&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 04 Sep 2019 17:32:21 GMT</pubDate>
    <dc:creator>BootCam</dc:creator>
    <dc:date>2019-09-04T17:32:21Z</dc:date>
    <item>
      <title>Calculated Dimension in Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-Dimension-in-Straight-Table/m-p/1620141#M734253</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am trying to create a calculated dimension filed in a straight table in qlikview based on some conditions.&lt;/P&gt;&lt;P&gt;Please see the attached file for more details:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="clipboard_image_0.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/18446i84FADA2B658B5E88/image-size/medium?v=v2&amp;amp;px=400" role="button" title="clipboard_image_0.png" alt="clipboard_image_0.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Let me know if you have any questions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;BC&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 02:34:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-Dimension-in-Straight-Table/m-p/1620141#M734253</guid>
      <dc:creator>BootCam</dc:creator>
      <dc:date>2024-11-16T02:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Dimension in Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-Dimension-in-Straight-Table/m-p/1620179#M734254</link>
      <description>&lt;P&gt;Dont know your full requirement but you could do it script like below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ExampleTemp:
LOAD AC, 
     ID, 
     Category
FROM
[C:\Users\DR\Downloads\example (1).xlsx]
(ooxml, embedded labels, header is 2 lines, table is Sheet1);

left join
load ID,
	if(Category='Ex',AC) as [New Field (AC2) to be created]
resident ExampleTemp
where Category='Ex';

NoConcatenate
Example:
load
	 AC, 
     ID, 
     Category,
     if(len([New Field (AC2) to be created])=0,'UNASSIGNED',[New Field (AC2) to be created]) as [New Field (AC2) to be created]
resident ExampleTemp;

drop table ExampleTemp;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Output&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;AC&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;ID&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Category&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;New Field (AC2) to be created&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;OC&lt;/TD&gt;&lt;TD&gt;349&lt;/TD&gt;&lt;TD&gt;At&lt;/TD&gt;&lt;TD&gt;UNASSIGNED&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;TAP&lt;/TD&gt;&lt;TD&gt;225&lt;/TD&gt;&lt;TD&gt;Lb&lt;/TD&gt;&lt;TD&gt;UNASSIGNED&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;COR&lt;/TD&gt;&lt;TD&gt;197&lt;/TD&gt;&lt;TD&gt;Ex&lt;/TD&gt;&lt;TD&gt;COR&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;IP&lt;/TD&gt;&lt;TD&gt;197&lt;/TD&gt;&lt;TD&gt;Lb&lt;/TD&gt;&lt;TD&gt;COR&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;IR&lt;/TD&gt;&lt;TD&gt;197&lt;/TD&gt;&lt;TD&gt;At&lt;/TD&gt;&lt;TD&gt;COR&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;OC&lt;/TD&gt;&lt;TD&gt;197&lt;/TD&gt;&lt;TD&gt;At&lt;/TD&gt;&lt;TD&gt;COR&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;PE&lt;/TD&gt;&lt;TD&gt;197&lt;/TD&gt;&lt;TD&gt;At&lt;/TD&gt;&lt;TD&gt;COR&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;TAP&lt;/TD&gt;&lt;TD&gt;197&lt;/TD&gt;&lt;TD&gt;Lb&lt;/TD&gt;&lt;TD&gt;COR&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;IP&lt;/TD&gt;&lt;TD&gt;122&lt;/TD&gt;&lt;TD&gt;Lb&lt;/TD&gt;&lt;TD&gt;UNASSIGNED&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;IR&lt;/TD&gt;&lt;TD&gt;122&lt;/TD&gt;&lt;TD&gt;At&lt;/TD&gt;&lt;TD&gt;UNASSIGNED&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;SE&lt;/TD&gt;&lt;TD&gt;122&lt;/TD&gt;&lt;TD&gt;St&lt;/TD&gt;&lt;TD&gt;UNASSIGNED&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 04 Sep 2019 16:46:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-Dimension-in-Straight-Table/m-p/1620179#M734254</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-09-04T16:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Dimension in Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-Dimension-in-Straight-Table/m-p/1620206#M734255</link>
      <description>&lt;P&gt;Hi Dilipranjith,&lt;/P&gt;&lt;P&gt;Thank you so much for the solutions. I am very tempted to accept as the solutions i needed but i was trying to do it on the UI(Chart) side.&amp;nbsp; Is there any way we could do it in the chart as a Conditional dimensions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;BC&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 17:32:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-Dimension-in-Straight-Table/m-p/1620206#M734255</guid>
      <dc:creator>BootCam</dc:creator>
      <dc:date>2019-09-04T17:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Dimension in Straight Table</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-Dimension-in-Straight-Table/m-p/1620213#M734256</link>
      <description>&lt;P&gt;not sure how feasible that is. but definitely would be slower than the script solution&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 18:12:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-Dimension-in-Straight-Table/m-p/1620213#M734256</guid>
      <dc:creator>dplr-rn</dc:creator>
      <dc:date>2019-09-04T18:12:10Z</dc:date>
    </item>
  </channel>
</rss>

