Tableau makedate function alternate in quicksight

Hi Guys!
Is there a function for making a date in quicksight, like I have makedate in tableau, any such function?
Or any other way I can create a date by passing date, month and year?

Hi @spitfire
you can achieve something similar with

and

parseDate(concat("10","/","31","/","2024"),"MM/dd/yyyy")

or

parseDate(concat(toSting({month},"/",toString({day}),"/",toString({year})),"MM/dd/yyyy")

BR

1 Like

Thanks! It worked just fine.

1 Like