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: 
renjithpl
Specialist
Specialist

Multiple transaction date

Hi All,

I have a table with 10 million records, but i have three diff dates (Created_Date, Closed_Date, Win_Date).

I created a Master calendar where I have "Date_Field".  (concatenation of all the three dates)

I want to show the transaction happened for all three dates in different charts.

I have split the 10 million table into three different table with Created_Date, Closed_Date and Win_Date.

My application is heavy now. with 30 million records.

Is there another approach where i can get this without splitting.

THanks

Renjith

2 Replies
Anil_Babu_Samineni

How is your split code? I am thinking about creating FLAG to use different scenario. Have you done the same?

Load Date1 as DateField, 'Date1' as Flag, .....;

Concatenate

Load Date2 as DateField, 'Date2' as Flag, .....;

Concatenate

Load Date3 as DateField, 'Date3' as Flag, .....;

In UI, you can use any one of Flag as per business need like

Sum({<Flag = {'Date3'}>} Measure) // This returns only sums the Measure where Date3 field has data points..

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
renjithpl
Specialist
Specialist
Author

I have tried this, but will you connect from this bridge table to the Transaction table with Three dates.

Which Key ? I have to have a combination key in my transaction table too.