Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Kushal_Chawda

Help to create logic

Dear All,

Need help. Please find the attched file for the logic

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

See attached example.


talk is cheap, supply exceeds demand
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try this script

Data:

LOAD
AcctNo,
Date,
Type,
Amt,
Transaction
FROM
Test.xlsx
(
ooxml, embedded labels, table is Sheet1);

Inner join (Data)
LOAD
*
WHERE UniqueTransaction = 1;
LOAD
AcctNo,
Date,
Transaction,
Count(Distinct Amt) AS UniqueAmt,
Count(Transaction) AS UniqueTransaction,
Count(Distinct Type) AS UniqueType
Resident Data
Group By AcctNo,
Date,
Amt,
Transaction;

Hope it helps you.

Regards,

Jagan.

DROP FIELDS UniqueAmt, UniqueTransaction, UniqueType;