This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
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
Hi all, I am not sure if this is the right place to put this, I am converting a tableau file to power bi. in tableau i have a expression
Tableau Expression: DATE(DATEPARSE("dd.MMM.yyyy",[Reporting Day]+"."+[Reporting Month]+"."+[Tax Year]))
the above expression i want to convert to power BI . Can anyone help me in it.
Date Sample below:
Solved! Go to Solution.
Hey @jitendersingh ,
I don't know Tableau so well, but from the context I guess you want to create a date from the 3 columns.
Try the following calculated column:
Date Column =
VAR vMonthAsNumber =
SWITCH(
myTable[Reporting Month],
"JAN", 1,
"FEB", 2,
"MAR", 3,
"APR", 4,
"MAY", 5,
"JUN", 6,
"JUL", 7,
"AUG", 8,
"SEP", 9,
"OCT", 10,
"NOV", 11,
"DEC", 12
)
RETURN
DATE( myTable[Tax Year], vMonthAsNumber, myTable[Reporting Day] )
Hey @jitendersingh ,
I don't know Tableau so well, but from the context I guess you want to create a date from the 3 columns.
Try the following calculated column:
Date Column =
VAR vMonthAsNumber =
SWITCH(
myTable[Reporting Month],
"JAN", 1,
"FEB", 2,
"MAR", 3,
"APR", 4,
"MAY", 5,
"JUN", 6,
"JUL", 7,
"AUG", 8,
"SEP", 9,
"OCT", 10,
"NOV", 11,
"DEC", 12
)
RETURN
DATE( myTable[Tax Year], vMonthAsNumber, myTable[Reporting Day] )
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 |
|---|---|
| 37 | |
| 37 | |
| 31 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 76 | |
| 59 | |
| 31 | |
| 31 | |
| 25 |