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! It's time to submit your entry. Live 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
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 5 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 18 | |
| 14 | |
| 9 | |
| 8 | |
| 8 |