Forum Discussion
xadya
8 years agoFrequent Visitor
Twitter datetype to Power BI date type
Hey, I have Twitter date that have a specific Twitter format for date: Sun Oct 15 15:55:29 +0000 2017 I would like this to be: 15 10 2017 or any workable variation on this. ...
- 8 years ago
xadya I am assuming the format of twitter dates doesn't change at all
- Using powerquery extract the year and the date
- Create a separate Months table with Month Name and Month Index (1-12)
- Then write a calculated column to combine all 3 (year, month, date) into a single date
Here is the output
You can download the PowerBI
ChandeepChhabra
Impactful Individual
8 years agoxadya I am assuming the format of twitter dates doesn't change at all
- Using powerquery extract the year and the date
- Create a separate Months table with Month Name and Month Index (1-12)
- Then write a calculated column to combine all 3 (year, month, date) into a single date
Here is the output
You can download the PowerBI
xadya
8 years agoFrequent Visitor
This works like a charm. Thank you so much!