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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
moatazelshafei
New Member

how to use fields Records withowt expand it

Screenshot 2023-02-21 120002.jpgi need to knnow how to use fields Records withowt expand it in  a visualize ?

1 REPLY 1
Anonymous
Not applicable

Hi @moatazelshafei ,

 

How do you want to use it? For records, you can use the column names to deepen the values in the record.

vcgaomsft_0-1677128991297.png

like this.

[Column1][a]

You can also fetch each value in the record and include it in a list.

Record.ToList([Column1])

Query.

let
    Source = {[a=1,b=2],[a=3,b=4,c=5]},
    #"Converted to Table" = Table.FromList(Source, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
    #"Added Custom" = Table.AddColumn(#"Converted to Table", "Custom", each [Column1][a]),
    #"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom.1", each Record.ToList([Column1]))
in
    #"Added Custom1"

Best Regards,
Gao

Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

How to get your questions answered quickly --  How to provide sample data in the Power BI Forum

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors