<?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: Comparing two coloums in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461602#M1157538</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanxxxxxx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Jan 2013 10:40:57 GMT</pubDate>
    <dc:creator>jyothish8807</dc:creator>
    <dc:date>2013-01-28T10:40:57Z</dc:date>
    <item>
      <title>Comparing two coloums</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461595#M1157527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi..&lt;/P&gt;&lt;P&gt;i want to compare two columns in a staright table and give an output as "YES" if both the strings in the column are matched and "NO" if not matched.&lt;/P&gt;&lt;P&gt;when iam using if(col1=col2,'yes','no') col1's all data is compared with 1st element of col2 and again all data of col1 is compared with col2 data.How can i avoid this???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 09:40:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461595#M1157527</guid>
      <dc:creator>jyothish8807</dc:creator>
      <dc:date>2013-01-28T09:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing two coloums</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461596#M1157528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;use recno() or rowno() functions&lt;/P&gt;&lt;P&gt;in your script &lt;/P&gt;&lt;P&gt;LOAD id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; b, RowNo() as r&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then instraigh table --&lt;/P&gt;&lt;P&gt;if(a=b,'yes','no')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 09:45:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461596#M1157528</guid>
      <dc:creator />
      <dc:date>2013-01-28T09:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing two coloums</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461597#M1157529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attached file,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;if(Column(1)=Column(2),'Yes','No')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 09:56:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461597#M1157529</guid>
      <dc:creator>kumarnatarajan</dc:creator>
      <dc:date>2013-01-28T09:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing two coloums</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461598#M1157530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can u plz explain me how to use rowno() properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to compare tag1 and tag2 and both columns are from different sheet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 10:06:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461598#M1157530</guid>
      <dc:creator>jyothish8807</dc:creator>
      <dc:date>2013-01-28T10:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing two coloums</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461599#M1157531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using,&lt;/P&gt;&lt;P&gt; if(col1=col2,'yes','no')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting the required output as "Yes" or "No" at my end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Snehal Nabar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 10:06:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461599#M1157531</guid>
      <dc:creator />
      <dc:date>2013-01-28T10:06:57Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing two coloums</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461600#M1157533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is an example, hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 10:09:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461600#M1157533</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2013-01-28T10:09:22Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing two coloums</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461601#M1157536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;iam taking two coloumns from two different sheets in that case all data of ist column is compared with first element of 2nd column. which i dont want. i want to solve this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 10:30:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461601#M1157536</guid>
      <dc:creator>jyothish8807</dc:creator>
      <dc:date>2013-01-28T10:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing two coloums</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461602#M1157538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanxxxxxx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 10:40:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461602#M1157538</guid>
      <dc:creator>jyothish8807</dc:creator>
      <dc:date>2013-01-28T10:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing two coloums</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461603#M1157540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So&amp;nbsp;You have two different tables each one with a column and you want to compare the columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not possible until you link the tables togheter, send me the source tables, I'll try to help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alessandro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 10:43:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461603#M1157540</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2013-01-28T10:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: Comparing two coloums</title>
      <link>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461604#M1157542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt; sorry for late reply.&lt;/P&gt;&lt;P&gt;rowno() &lt;/P&gt;&lt;P&gt;Returns the number of the current row within the current column segment in a table or, in the case of bitmap charts, within the chart's straight table equivalent. The first row is number 1. &lt;/P&gt;&lt;P&gt;in&amp;nbsp; your script after field name we write rowno() function then it count first row as 1.&lt;/P&gt;&lt;P&gt;please see the attachement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 11:36:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Comparing-two-coloums/m-p/461604#M1157542</guid>
      <dc:creator />
      <dc:date>2013-01-28T11:36:07Z</dc:date>
    </item>
  </channel>
</rss>

