Hi, I need to capitalize the first letter of the word if there is a dash. So in image above, 'Construction -industrial' should be 'Construction - Industrial'. Here is my code: Concatenate(UpCase(Substring('Industry_Desc'n, 1, 1)), LowerCase(Substring('Industry_Desc'n, 2, 1000))) Can someone help? Thanks!
... View more