Is there an easy way to populate an entire column (I have multiple columns) based on the value in that column that has a comma in it?
Basically, if I have a column named pole and all attributes in that column have the value of "pole_status" except for one value that has this value: "Con, PLA, MRC, MRE". How can I populate the entire column with "Con, PLA, MRC, MRE".
I've tried Attribute Manager using a Conditional Value to filter out all records that don't have comma in it but then I'm not sure how I can actually use the "Con, PLA, MRC, MRE" value as the output value. Maybe there's a better option. Custom Python might do the trick - but I want to exhaust all of my transformer options before I go that route. Note: I cant simply write "Con, PLA, MRC, MRE" in the AttributeManager since these values will change and there's multiple columns - si it wouldn't be sustainable
I also know I can probably accomplish this by using a multiple FeatureMergers but I definitely don't want to do that (if I dont have to) due to performance (there would probably be 20 + FeatureMergers).
Thanks!