Complete the code to split the 'FullName' column into first and last names using Power Query.
Table.SplitColumn(Source, "FullName", Splitter.SplitTextByDelimiter(" ", [1]), {"FirstName", "LastName"})
Using QuoteStyle.None ensures the split happens exactly at the delimiter without considering quotes.
Complete the code to merge 'City' and 'Country' columns with a comma separator in Power Query.
Table.CombineColumns(Source, {"City", "Country"}, Combiner.CombineTextByDelimiter([1], QuoteStyle.None), "Location")The comma and space ", " is a common separator for city and country names.
Fix the error in this Power Query code to split 'DateTime' into 'Date' and 'Time' columns.
Table.SplitColumn(Source, "DateTime", Splitter.SplitTextByEachDelimiter({"[1]"}, false, [2]), {"Date", "Time"})
The delimiter between date and time in ISO format is uppercase 'T'.
Fill both blanks to merge 'FirstName' and 'LastName' with a space separator and no quotes in Power Query.
Table.CombineColumns(Source, {"FirstName", "LastName"}, Combiner.CombineTextByDelimiter([1], [2]), "FullName")Use a space " " as delimiter and QuoteStyle.None to avoid adding quotes.
Fill all three blanks to split 'Address' by comma, trim spaces, and keep both parts in Power Query.
Table.TransformColumns(Table.SplitColumn(Source, "Address", Splitter.SplitTextByDelimiter([1], [2]), {"Street", "City"}), {{"Street", Text.Trim}, {"City", [3])
Split by comma "," with no quotes, then trim spaces from both parts.