Forum Discussion
olliehernandez
2 years agoNew Member
Combining Columns
Hi everyone! I'd like to combine three columns together. When 'Park Name' is blank, I want it to add data from either community center & pool or community garden. When Park Name is blank then u...
- 2 years ago
Hey,
In your code you have [Park Name] = """""" for a value, so it looks for """" in the string.
Try:
= Table.AddColumn(#"Renamed Columns", "Combined Locations", each if [Park Name] = "" then [#"Community Center & Pool"] else [Park Name])
Greg_Deckler
2 years agoCommunity Champion
olliehernandez Try using null instead of ""