Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Hi,
I am wondering if it is possible to create a dynamic table with multiple columns.
I am looking to generate a table for historical data view ranges, a mix of static values and previous years, combined with a calculated sort order.
For Example:
I can create the first column with:
Historical Data = UNION(DATATABLE("HistoricalData",STRING,{{"1M"},{"3M"},{"6M"},{"9M"},{"12M"}}),distinct(Dates[Year]))
And I typically create the second field with:
Solved! Go to Solution.
Hi,
I think I got this code to work:
Historical data =
VAR _minYear =
MIN ( vDate[Year] )
RETURN
UNION (
DATATABLE (
"HistoricalData"; STRING;
"Sort"; INTEGER;
{
{ "1M"; 1 };
{ "3M"; 2 };
{ "6M"; 3 };
{ "9M"; 4 };
{ "12M"; 5 }
}
);
ADDCOLUMNS ( DISTINCT ( vDate[Year] ); "Sort"; vDate[Year] - _minYear + 6 )
)Cheers,
S
Hi,
I think I got this code to work:
Historical data =
VAR _minYear =
MIN ( vDate[Year] )
RETURN
UNION (
DATATABLE (
"HistoricalData"; STRING;
"Sort"; INTEGER;
{
{ "1M"; 1 };
{ "3M"; 2 };
{ "6M"; 3 };
{ "9M"; 4 };
{ "12M"; 5 }
}
);
ADDCOLUMNS ( DISTINCT ( vDate[Year] ); "Sort"; vDate[Year] - _minYear + 6 )
)Cheers,
S
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |