Forum Discussion
Nekkar
4 years agoNew Member
Dax data type identyfication, data type format change
Hi All, 1) is there any dax function which would help me identify data type of a data in column? Eg. CheckDataType( 'Data'[Date]) 2) I would like to convert values in 2 columns in two tabl...
jppv20
4 years agoSolution Sage
Hi Nekkar ,
In that case this should work, create a new column:
NewDate = DATE(RIGHT(Sales[SDate],4),MID(Sales[SDate],4,2),LEFT(Sales[SDate],2))
Jori
If I answered your question, please mark it as a solution to help other members find it more quickly.
Nekkar
4 years agoNew Member
unfortunately it doesn't work.