Power BI - Power Query Editor
Given this Power Query M code:
What will be the value in the City column for Bob after this code runs?
let
Source = Table.FromRecords({[Name="Anna", City="NY"],[Name="Bob", City="LA"]}),
Replaced = Table.ReplaceValue(Source, "LA", "Los Angeles", Replacer.ReplaceText, {"City"})
in
ReplacedWhat will be the value in the City column for Bob after this code runs?
