Forum Discussion
Anonymous
6 years agoNot applicable
Data format issue
Hi, i have a column in data set with format 1.2017 (as january 2017) but power BI reads it as 12-1899...?? how can i make it so is it read as january 2017? Thanks!
- 6 years ago
Hi Anonymous ,
you can create new column, replace "." with "-" and convert Data type to Date.
Month = SUBSTITUTE('Table'[Date],".","-")Modelling:
Data Type : 'Date'
Format : MMMM yyyy
Hope it helps,
Matej
MatejZukovic
6 years agoResolver I
Hi Anonymous ,
you can create new column, replace "." with "-" and convert Data type to Date.
Month = SUBSTITUTE('Table'[Date],".","-")Modelling:
Data Type : 'Date'
Format : MMMM yyyy
Hope it helps,
Matej
Anonymous
6 years agoNot applicable
thanks, work fine.
- v-eachen-msft6 years agoCommunity Support
Hi Anonymous ,
If your issues are solved, you could accept the reply you like.