Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
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.