Is there a way to include logic in a propercase scenario where some words do not get adjusted?
For example, let's take two vendors:
HARDWARE SUPPLY SHOP
ABC HARDWARE USA, INC.
Propercase will turn them into:
Hardware Supply Shop (this is good)
Abc Hardware Usa, Inc. (this is "okay")
Prefer:
ABC Hardware USA, Inc.
I'm lucky with this report in that I know the keywords I would not want to change. For example, I know if "ABC" or "USA" then don't propercase the word, otherwise, propercase is fine.
I'm guessing some sort of substring and array logic would be the solution...but not sure how to do that (if that's the solution). Any thoughts?
For example, let's take two vendors:
HARDWARE SUPPLY SHOP
ABC HARDWARE USA, INC.
Propercase will turn them into:
Hardware Supply Shop (this is good)
Abc Hardware Usa, Inc. (this is "okay")
Prefer:
ABC Hardware USA, Inc.
I'm lucky with this report in that I know the keywords I would not want to change. For example, I know if "ABC" or "USA" then don't propercase the word, otherwise, propercase is fine.
I'm guessing some sort of substring and array logic would be the solution...but not sure how to do that (if that's the solution). Any thoughts?