Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
JoseGarcia
Creator III
Creator III

Same date showing multiple times

Hi there, 

I have multiples records for same date. 
I did look at previous posts. But have not been able to get a solution.

Dimension name: 

= date(DateReportDate)

Script: 

[date_of_report] AS DateReportDate,

 

can anyone assist?
As always, thanks a million!

JoseGarcia_0-1603357352326.png

 

1 Solution

Accepted Solutions
Chanty4u
MVP
MVP

Might be format issue.

can you try this in script  ?

Date(Floor(date_of_report)) as DateReportDate

or

Floor(date_of_report) as DateReportDate

or

date(date#(date_of_report,'DD/MM/YYYY'),'DD/MM/YYYY') as DateReportDate

View solution in original post

2 Replies
Chanty4u
MVP
MVP

Might be format issue.

can you try this in script  ?

Date(Floor(date_of_report)) as DateReportDate

or

Floor(date_of_report) as DateReportDate

or

date(date#(date_of_report,'DD/MM/YYYY'),'DD/MM/YYYY') as DateReportDate

JoseGarcia
Creator III
Creator III
Author

thank you both! 
it worked! 

Regards

 

jose