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

Master calendar not matching with fact table field

Hi experts

My master calendar is matching with the field "Date" of my fact table:

TomBond77_0-1689836600722.png

 

But in the App itself it is not matching with the facts, there are two records instead of one record for each "Date":

TomBond77_1-1689836673663.png

Does anyone know why? Thanks for any advises.

Tom

 

 

Labels (6)
1 Solution

Accepted Solutions
marcus_sommer

Make sure that your date is a date and not a timestamp, for example per:

date(floor(Date)) as Date

View solution in original post

2 Replies
cristianj23a
Partner - Creator III
Partner - Creator III

They can be several cases.

In any case, use the "Trim" command in the "Date" field, in the script.

For example:

load
Category,
Trim(Date) AS Date,
....

If it does not work for you, it may be another case, for this I would need your test data to review it.

https://www.linkedin.com/in/cristianjorge/
Do not forget to mark as "Accepted Solution" the comment that resolves the doubt.
marcus_sommer

Make sure that your date is a date and not a timestamp, for example per:

date(floor(Date)) as Date