Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI All,
can you please help with the following?
I need to translate in Qlik set analysis the follwoing query
select sum(TotalPayment) from (
select a.*, b.s_id as claimantUID2 from analytics.payment a
join analytics.Claimant b on a.ClaimantUID = b.s_id
join analytics.Claim c on b.ClaimUID = c.s_id
join ( select ClaimID, ClaimantID, max(claimantRank) as MaxClaimantRank
from analytics.Claimant where ClaimantDate <= '2011-01-01'
group by ClaimID, ClaimantID
) d on d.ClaimantID = b.ClaimantID and d.MaxClaimantRank = b.claimantRank
where a.Status = 'Issued' and
PaymentDate <= '2011-01-01'
) a
Thanks,
Francesco
Hi Francesco,
Could you please post a sample qvf in order to understand what you are trying to do?
There we will be able to see your chart object where you suppose to use Set analysis with max and Aggr.
As you posted here your request doesn't make sense.
HI,
for now it's just a KPI showing the sum of the payments.
I need to use same logic used in SQL
ok but without a sample app with your data model, i think it's hard to help you in some way with your KPI object.