0
votes

When we calculate measure in power bi how to convert string date value into date type date value using DAX formula?

"02/04/2020" -> ?

1

1 Answers

0
votes

We have DAX function DATEVALUE()

DATEVALUE("02/04/2020")  -->  02/04/2020

       string data type      date data type