<?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 maximum between dates row wise calculation in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/maximum-between-dates-row-wise-calculation/m-p/77456#M772226</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Hi ,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;When i am trying to calculate max between 3 dates ,its not populating correctly as its only considering the first row not the second and third.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Example:In the rowwisemax.png file the max between the 3 dates(checkentered,issue,and createdate) is claimtransaction maxdate.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;The Logic used to calculate max inside the script level is&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;BridgeMapping:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Mapping Load DISTINCT&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;"DIM Claim Transaction Header Key",&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;"DIM Claim Payment Check Key"&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;RESIDENT BridgeClaimPaymentCheckTransaction;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;CheckIssueDateMapping:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;MAPPING LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;"DIM Claim Payment Check Key",&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Date(Floor("Check Issue Datetime")) As "Check Issue Date"&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM [lib://$(vQvdFolder)/DIMClaimPaymentCheck.qvd]&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(qvd);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;CheckEnterDateMapping:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;MAPPING LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;"DIM Claim Payment Check Key",&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Date(Floor("Check Entered Datetime")) As "Check Entered Date"&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM [lib://$(vQvdFolder)/DIMClaimPaymentCheck.qvd]&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(qvd);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Unqualify *;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;TransactionDate:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD *,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Date(Monthstart(ClaimTransactionMaxDate),'YYYYMM') as MaxmonthYear; &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Load "DIM Claim Transaction Header Key",&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Date(Floor(RangeMax(Num(CheckIssueDate), Num(CheckEnterDate),&amp;nbsp; Num("Claim Transaction Create DateTime")))) AS ClaimTransactionMaxDate;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;*,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ApplyMap('CheckIssueDateMapping', BridgeDimKey) AS CheckIssueDate,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ApplyMap('CheckEnterDateMapping', BridgeDimKey) AS CheckEnterDate;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;DISTINCT "Claim Transaction Create DateTime",&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;"DIM Claim Transaction Header Key",&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ApplyMap('BridgeMapping', "DIM Claim Transaction Header Key", 'NA') AS BridgeDimKey&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;//FROM [lib://$(vQvdFolder)/FACTClaimTransactionDetail.qvd]&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;//(qvd);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;RESIDENT [Master FACT Temp];&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;DROP table [Master FACT Temp];&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;//unqualify *;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;but when we exclusively take this &lt;STRONG style="font-size: 13.3333px;"&gt;Date(Floor(RangeMax(Num(CheckIssueDate), Num(CheckEnterDate),&amp;nbsp; Num("Claim Transaction Create DateTime")))) inside Qliksense table as an measure its working correctly and showing 4/2/2018 as max date.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;Can Anyone please suggest how does Qlik reacts in row wiise calculations.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>rapradha</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>maximum between dates row wise calculation</title>
      <link>https://community.qlik.com/t5/QlikView/maximum-between-dates-row-wise-calculation/m-p/77456#M772226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333px;"&gt;Hi ,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;When i am trying to calculate max between 3 dates ,its not populating correctly as its only considering the first row not the second and third.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Example:In the rowwisemax.png file the max between the 3 dates(checkentered,issue,and createdate) is claimtransaction maxdate.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;The Logic used to calculate max inside the script level is&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;BridgeMapping:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Mapping Load DISTINCT&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;"DIM Claim Transaction Header Key",&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;"DIM Claim Payment Check Key"&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;RESIDENT BridgeClaimPaymentCheckTransaction;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;CheckIssueDateMapping:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;MAPPING LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;"DIM Claim Payment Check Key",&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Date(Floor("Check Issue Datetime")) As "Check Issue Date"&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM [lib://$(vQvdFolder)/DIMClaimPaymentCheck.qvd]&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(qvd);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;CheckEnterDateMapping:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;MAPPING LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;"DIM Claim Payment Check Key",&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Date(Floor("Check Entered Datetime")) As "Check Entered Date"&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM [lib://$(vQvdFolder)/DIMClaimPaymentCheck.qvd]&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(qvd);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Unqualify *;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;TransactionDate:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD *,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Date(Monthstart(ClaimTransactionMaxDate),'YYYYMM') as MaxmonthYear; &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Load "DIM Claim Transaction Header Key",&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Date(Floor(RangeMax(Num(CheckIssueDate), Num(CheckEnterDate),&amp;nbsp; Num("Claim Transaction Create DateTime")))) AS ClaimTransactionMaxDate;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;*,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ApplyMap('CheckIssueDateMapping', BridgeDimKey) AS CheckIssueDate,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ApplyMap('CheckEnterDateMapping', BridgeDimKey) AS CheckEnterDate;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;DISTINCT "Claim Transaction Create DateTime",&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;"DIM Claim Transaction Header Key",&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;ApplyMap('BridgeMapping', "DIM Claim Transaction Header Key", 'NA') AS BridgeDimKey&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;//FROM [lib://$(vQvdFolder)/FACTClaimTransactionDetail.qvd]&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;//(qvd);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;RESIDENT [Master FACT Temp];&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;DROP table [Master FACT Temp];&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;//unqualify *;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;but when we exclusively take this &lt;STRONG style="font-size: 13.3333px;"&gt;Date(Floor(RangeMax(Num(CheckIssueDate), Num(CheckEnterDate),&amp;nbsp; Num("Claim Transaction Create DateTime")))) inside Qliksense table as an measure its working correctly and showing 4/2/2018 as max date.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;Can Anyone please suggest how does Qlik reacts in row wiise calculations.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/maximum-between-dates-row-wise-calculation/m-p/77456#M772226</guid>
      <dc:creator>rapradha</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
  </channel>
</rss>

