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
Hi - I have the below very useful code taken from Havens consulting. Was wondering if anyone had used this but with a financial YTD instead of calendar YTD? Our FY ends in June.
/*
* Generate time intelligence measures based
*
* Modified by: Reid Havens, https://havensconsulting.net
* Original Author(s): Benoit Fedit, https://datakuity.com
* Original Author(s): Bernat Agulló, www.esbrina-ba.com/blog
*
*/
// Creates popup promots to select the calendar table, and date column, to then dynamically update the scripts below
var CalendarTable = SelectTable(label: "Select your calendar table");
if(CalendarTable == null) return;
var CalendarTableDateColumn = SelectColumn(CalendarTable.Columns, label: "Select the date key column");
if(CalendarTableDateColumn == null) return;
string CalendarTableName = CalendarTable.Name;
string CalendarTableDateColumnName = CalendarTableDateColumn.Name;
// For each selected measure create YTY, PY, PY YTD, YOY, YOY% measures
foreach(var m in Selected.Measures) {
// YTD
m.Table.AddMeasure(
m.Name + " YTD", // Name
"\r\n" + // Carriage Return
"CALCULATE(" +
"\r\n" + // Carriage Return
" " + m.DaxObjectName + "," +
"\r\n" + // Carriage Return
" DATESYTD( '" + CalendarTableName + "'[" + CalendarTableDateColumnName + "] )" +
"\r\n" + // Carriage Return
")",
".Time Intelligence\\" + m.Name // Display Folder
);
Hi
Hi @AndySmith ,
This is the related document, you can view this content:
DAX Formulas for Fiscal Year, Fiscal Quarter and M... - Microsoft Fabric Community
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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 |
|---|---|
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |