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 moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 26 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 37 | |
| 32 | |
| 25 | |
| 23 |