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 nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Wanted to create a table as below. pls help me the right DAX formula or Query.
| Time frame | Index |
| YTD | 1 |
| 6 Months | 2 |
| 3 Months | 3 |
Solved! Go to Solution.
Hi @Anonymous ,
We can enter this table in Power Query Editor:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WigxxUdJRMlSK1YlWMlPwzc8rySgGChiBBYwRAsZKsbEA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [#"Time frame" = _t, Index = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Time frame", type text}, {"Index", Int64.Type}})
in
#"Changed Type"
Or we can generate it from Records in a blank query:
let
Source = Table.FromRecords({
[Time frame = "YTD", Index = 1],
[Time frame = "6 Months", Index = 2],
[Time frame = "3 Months", Index = 3]
}
)
in
Source
We can also create a calculated table by DAX:
DaxTable =
DATATABLE (
"Time frame", STRING,
"Index", INTEGER,
{
{ "YTD", 1 },
{ "6 Months", 2 },
{ "3 Months", 3 }
}
)
Best regards,
Hi @Anonymous ,
We can enter this table in Power Query Editor:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WigxxUdJRMlSK1YlWMlPwzc8rySgGChiBBYwRAsZKsbEA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [#"Time frame" = _t, Index = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Time frame", type text}, {"Index", Int64.Type}})
in
#"Changed Type"
Or we can generate it from Records in a blank query:
let
Source = Table.FromRecords({
[Time frame = "YTD", Index = 1],
[Time frame = "6 Months", Index = 2],
[Time frame = "3 Months", Index = 3]
}
)
in
Source
We can also create a calculated table by DAX:
DaxTable =
DATATABLE (
"Time frame", STRING,
"Index", INTEGER,
{
{ "YTD", 1 },
{ "6 Months", 2 },
{ "3 Months", 3 }
}
)
Best regards,
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.