Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
AccountNumber | Amount |
---|---|
160000 | € 500 |
162000 | € 500 |
172000 | € 1000 |
172100 | € 2000 |
172200 | € 2000 |
172201 | € 1000 |
TotalNumber | Amount | Begin | End |
---|---|---|---|
1 | € 7000 | 100000 | 199999 |
16 | € 1000 | 160000 | 169999 |
17 | € 6000 | 170000 | 179999 |
NoConcatenate LOAD * Resident Accounts;
Inner Join LOAD * Resident Totals;
DROP Table Accounts;
DROP Table Totals;
But this gave very weird results. Is there any way to combine them?
Try this out:
Accounts:
LOAD
AccountNumber,
AccountNumber AS [AccountNumber ReportLink]
AccountName
FROM Account.xls (biff, embedded labels, table is [Accounts$]);
ReportGroups:
LOAD
RowNo() AS RGKey,
Begin,
End,
Name
FROM ReportDefinitions.xls (biff, embedded labels, table is [RepDef$]);
TempReportsLink:
INTERVALMATCH (AccountNumber)
LOAD
Begin,
End
RESIDENT ReportGroups;
LEFT JOIN (ReportGroups) LOAD
RGKey,
Begin&'-'&End AS ReportsLinkKey
RESIDENT ReportGroups;
ReportsLink:
LOAD
Begin&'-'&End AS ReportsLinkKey,
AccountNumber AS [AccountNumber ReportLink]
RESIDENT TempReportsLink;
DROP TABLE TempReportsLink;
Jonathan
thx for your reply. I still don't get them in one table, I actually want a table or chart in qlikview like this :
AccountNumber | Amount |
---|---|
1 | € 7000 |
16 | € 1000 |
160000 | € 500 |
162000 | € 500 |
17 | € 6000 |
172000 | € 1000 |
172100 | € 2000 |
172200 | € 2000 |
172201 | € 1000 |
try this
Account:
mapping LOAD AccountNumber,
Amount
FROM
(ooxml, embedded labels, table is Sheet1);
Total:
LOAD TotalNumber,
Amount,
Begin,
End,
ApplyMap('Account',Amount)as AccountNumber
FROM
(ooxml, embedded labels, table is Sheet2);
i have attached the file see this.