I am making a translator and I need the answer to have the first letter capitalized, how can I do it? pls help
JOIN, SEGMENT, UPCASE three type blocks needed.
1 Like
Another approach:
Text split the text at '' (empty text) into a list variable.
Replace item 1 of the list with upcase of itself.
Join the list with separator '' (empty text) to get the capitalized results.
Or this:
2 Likes
4 Likes