Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Create table

Wanted to create a table as below. pls help me the right DAX formula or Query.

Time frameIndex
YTD1
6 Months2
3 Months3
1 ACCEPTED SOLUTION
v-lid-msft
Community Support
Community Support

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"

 

1.jpg

 

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

3.jpg4.jpg

 

 

We can also create a calculated table by DAX:

DaxTable = 
DATATABLE (
    "Time frame", STRING,
    "Index", INTEGER,
    {
        { "YTD", 1 },
        { "6 Months", 2 },
        { "3 Months", 3 }
    }
)

2.jpg

 


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-lid-msft
Community Support
Community Support

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"

 

1.jpg

 

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

3.jpg4.jpg

 

 

We can also create a calculated table by DAX:

DaxTable = 
DATATABLE (
    "Time frame", STRING,
    "Index", INTEGER,
    {
        { "YTD", 1 },
        { "6 Months", 2 },
        { "3 Months", 3 }
    }
)

2.jpg

 


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.