Table.FromValue Function in Power Query

The Table.FromValue function returns a table with a column containing the provided value or list of values.

Syntax

Table.FromValue(value as any, optional options as nullable record) as table

Example:

Power Query M

let
    Source = Table.FromValue({"Ashish", "Katrina", "Alia", "Vicky", "Mohini", "Meenakshi", "Esha", "Anjali"})
in
    Source 

The output of the above code is shown below:

Table.FromValue in Power Query