Forum Discussion
Tabular Format to List Field Value
- Anonymous6 years ago
Hi Pat,
Thanks for your time and reply. Appreciate your time. I got the desinred result using simple Table.FromRows function.
= Table.FromRows( List.Split(MyData[Field_Value], 4) )
= Table.RenameColumns(Source,{{"Column1", "FirstName"}, {"Column2", "LastName"}, {"Column3", "Age"}, {"Column4", "Designation"}})
MyData is the table name and there were 4 repated colum values in Vertical table.
Hi Pat,
Thanks for your time and reply. Appreciate your time. I got the desinred result using simple Table.FromRows function.
= Table.FromRows( List.Split(MyData[Field_Value], 4) )
= Table.RenameColumns(Source,{{"Column1", "FirstName"}, {"Column2", "LastName"}, {"Column3", "Age"}, {"Column4", "Designation"}})
MyData is the table name and there were 4 repated colum values in Vertical table.