Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
rassanbekov
Partner - Contributor
Partner - Contributor

Tables in Qlikview

Hello, guys!

Could you please help to create a table in Qlikview from two dimensions:

I have the following input data:

Account nameDebit accountDebit amountCredit accountCredit amount
Cash10101001250500
Receivables12102001020600
Payables33103001010800

I need to create same in Qlik format table.

The issue is that Debit amounts should be summed by debit account and credit amount shoud be summed by credit accounts.

Kind regards,

Ruslan

8 Replies
PrashantSangle

sum([Debit account]) + sum([Debit amount])

can explain in details??

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
neha_shirsath
Specialist
Specialist

Hi Ruslan,

Could you please provide some sample data, that will be more helpful.

Thanks ,

Neha

effinty2112
Master
Master

Hi Ruslan,

Maybe:

Data:

LOAD [Account name],

'Debit' as [Account Type],

     [Debit account] as Account,

     [Debit amount] as Amount

FROM

[https://community.qlik.com/thread/268129]

(html, codepage is 1252, embedded labels, table is @1);

LOAD [Account name],

'Credit' as [Account Type],

     [Credit account] as Account,

     [Credit amount] as Amount

FROM

[https://community.qlik.com/thread/268129]

(html, codepage is 1252, embedded labels, table is @1);

Giving:

Account name Account Type Account Amount
CashCredit1250500
CashDebit1010100
PayablesCredit1010800
PayablesDebit3310300
ReceivablesCredit1020600
ReceivablesDebit1210200

Cheers

Andrew

arvind_patil
Partner - Specialist III
Partner - Specialist III

Hi Ruslan,

I think  you need to use Aggr function to achieve this.

Aggr(sum([Debit Amount]),debit account) ,

Aggr(sum([credit amount]),CreditAccount)

Thanks,

Arvind Patil

rassanbekov
Partner - Contributor
Partner - Contributor
Author

It is close, but I need same representation of input data in output.

rassanbekov
Partner - Contributor
Partner - Contributor
Author

I need to create in Qlik same as I showed in input file

PrashantSangle

Can you provide sample data in excel which is your input file and required output also.

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Kushal_Chawda

did not get this. Can you please show us what output you need?