hello everyone, I want to ask, how can I turn the data to UPPERCASE that just I highlight (row 149448 - 149438)??
I have tried UPPERCASE in String Manipulation, but it doesnt works (surely xD)
So, I just want UpperCase some of my data, not ALL.
NOTE : the data that I highlight, they all are lowercase, the rest is UPPERCASE. but the data that start from ‘‘drg. and dr.’’, I dont want they turn into UPPERCASE.
An alternative, going back to String Manipulation is to use the regexMatcher function along with the “ternary operator” for conditionals
string(
regexMatcher($SampleData$,"^dr\\..*|^drg\\..*").equals("False")
?upperCase($SampleData$) /* make upper case if not starting with dr. or drg. */
:$SampleData$ /* otherwise leave alone */
)