Forum Discussion
Charu
7 years agoPost Patron
Custom date FORMAT measure/column in Direct query mode
Dear All, is there any possibilities to write a DAX formula for Custom india date format like dd-mm-yyyy in a direct query mode? 1.In Calculated column FORMAT is not support in direct query m...
- 7 years ago
Hi BhaveshPatel
Thank you so much for your Idea.
The below calculated column worked fine.
Calculated Column = DAY('Table1'[Creation_Date]) & "/" & MONTH('Table1'[Creation_Date]) & "/" & YEAR('Table1'[Creation_Date])
Charu
7 years agoPost Patron
Hi BhaveshPatel
Thank you so much for your Idea.
The below calculated column worked fine.
Calculated Column = DAY('Table1'[Creation_Date]) & "/" & MONTH('Table1'[Creation_Date]) & "/" & YEAR('Table1'[Creation_Date])
v-cherch-msft
7 years agoMicrosoft Employee
Hi Charu
Glad to hear you've solved it, kindly mark your answer as a solution.that way, other community members will easily find the solution when they get same issue.
Regards,
Cherie