Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
KommulaRahul
Contributor III
Contributor III

There is one date field which is Canonical date in pivot table.

I have taken two variables vstartDate and vEndDate. I need to get the dates from starting date of this month (Jun 1) to today's date. 

I used valueloop($(vstartDate), $(vEndDate)) . But I'm getting the dates in serial number(45078) format. 

How to convert these numbers into date format like (45078 to 01-06-2023) 

Labels (1)
2 Replies
hic
Former Employee
Former Employee

Try

 Date(ValueLoop($(vstartDate), $(vEndDate)))

KommulaRahul
Contributor III
Contributor III
Author

I tried this but it's not working.