Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi Team,
I am not sure how to write this formula in DAX as it is used in tableau to create a period start date.
| DATE( STR([P_Fiscal Year])+ "-" + STR( IF [P_Fiscal Period ] <= 9 THEN "0"+STR([P_Fiscal Period ]) ELSE STR([P_Fiscal Period ]) END ) + "-" + "01") |
hi @Anonymous ,
try creating a calculated column in your table with the following measure.
Assuming data types of Year and Fiscal Period = Int/wholenumber
Period Start Date =
FORMAT(
DATE(
[P_Fiscal Year],
IF('Table'[P_FiscalPeriod]<=9,"0"&[P_FiscalPeriod],[P_FiscalPeriod]),
01),
"yyyy-mm-dd"
)
Sample output is shown.
you could also just use:
Period Start Date =
FORMAT(
DATE(
[P_Fiscal Year],
'Table'[P_FiscalPeriod],
01),
"yyyy-mm-dd"
)
as format handles the "0" in the if condition
let me know if this works for you.
if it doesn't kindly provide sample inputs / specify data types.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 14 | |
| 7 | |
| 4 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 25 | |
| 10 | |
| 10 | |
| 6 | |
| 6 |