There may be a way to have this happen automatically with scripting, but I can't speak to that if so.
If you wanted to go the no-code route, perhaps you could set up a formula field that would capitalize words however you wanted, regardless of the input. Then, you could use that field to run the deduper extension every now and then to merge the varied inputs into one record.
There may be a way to have this happen automatically with scripting, but I can't speak to that if so.
If you wanted to go the no-code route, perhaps you could set up a formula field that would capitalize words however you wanted, regardless of the input. Then, you could use that field to run the deduper extension every now and then to merge the varied inputs into one record.
Yes, standardizing words with a formula column ( UPPER() or LOWER() ) makes your life easy. Then you can set an automation which gets the standardized value of a new record and pastes it into the linked record field.
So, a user types YeLLOw in column1, but you have "yellow" in the second table, so create a formula column with the formula of LOWER(column1) called formulaColumn1. Then create an automation, with trigger "when formulaColumn1 is not empty", then action is "Update Record", updated the linked record cell with the value comes from formulaColumn1 which is yellow, since LOWER() formula converts "YeLLOW to "yellow".