Forum Discussion
DIACHROMA
5 years agoHelper II
Power Query - Replace values from another table without merging
Hi everyone, I would like to replace values in a column from corresponding values in another table avoiding merging and expanding columns. I have multiple queries with RecordType IDs in colum...
- 5 years ago
= Table.ReplaceValue(#"Changed Type", each [RECORDTYPEID], each #"crm_RECORDTYPE"[NAME]{List.PositionOf(#"crm_RECORDTYPE"[ID], [RECORDTYPEID])}, Replacer.ReplaceValue, {"RECORDTYPEID"})
CNENFRNL
5 years agoCommunity Champion
= Table.ReplaceValue(#"Changed Type", each [RECORDTYPEID], each #"crm_RECORDTYPE"[NAME]{List.PositionOf(#"crm_RECORDTYPE"[ID], [RECORDTYPEID])}, Replacer.ReplaceValue, {"RECORDTYPEID"})