Hi @wripcode , you could use a separate formula field with a formula like:
upper(left(field('Title'),1)) + right(field('Title'),length(field('Title')) - 1)
This formula column would then always show the first character in uppercase. Perhaps also using the trim
function around every field('Title')
would make sure no whitespace was incorrectly included!
Does this help?