Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
my data looks like below:
| month | value |
| jan'18 | 1 |
| feb'18 | 1 |
| mar'18 | 1 |
| apr'18 | 1 |
Here monh column is in text type and when I try to change to date type, I get all errors. How do I fix this?
Kinldy help.
Solved! Go to Solution.
@sam_nik12345 , Try the other option suggested
Column = DATEVALUE("01-"& left([month],3) & "-" & RIGHT([month],2) )
@sam_nik12345 , I would prefer to create a date column like
DATEVALUE("01 " &[Month])
or
DATEVALUE("01-" &left([Month],3) & "-"& right([month],2))
Hi @amitchandak
I am getting error while creating a custom column with the formula-
= DATEVALUE("01 " &[Month])
@sam_nik12345 , Try the other option suggested
Column = DATEVALUE("01-"& left([month],3) & "-" & RIGHT([month],2) )
The other table is as below, on which I am getting error with this formula. week column format is text type. Kinldy help.
| week | value |
| 3-Apr-18 | 1 |
| 10-Apr-18 | 1 |
| 17-Apr-18 | 1 |
| 24-Apr-18 | 1 |
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 45 | |
| 38 | |
| 34 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 66 | |
| 64 | |
| 31 | |
| 26 | |
| 26 |