Fellow Forum Members,
I have tested the five formulas listed below and none of them are able to successfully convert a paragraph of UPPERCASE text over to a paragraph of Sentence Case text. In other words, I need only the first text letter starting a sentence to be UPPERCASE for every sentence within a paragraph:
#1- SUBSTITUTE(LOWER(C2),CHAR(CODE(C2)),UPPER(CHAR(CODE(C2))),1)
#2- UPPER(LEFT(C2,1))&MID(LOWER(C2),2,999)
#3- left(A1) & lower(right(A1,len(A1)-1))
#4- UPPER(LEFT(A1)) & LOWER(MID(A1, 2, LEN(A1)-1))
#5- UPPER(LEFT(C4,1)) & LOWER(RIGHT(C4,LEN(C4)-1))
I hope someone out there can help everyone out in this forum by developing a formula which will accurately convert a paragraph over to Sentence Case because none of the formulas I have listed above seem to work right. Thanks in advance for your help.
I have tested the five formulas listed below and none of them are able to successfully convert a paragraph of UPPERCASE text over to a paragraph of Sentence Case text. In other words, I need only the first text letter starting a sentence to be UPPERCASE for every sentence within a paragraph:
#1- SUBSTITUTE(LOWER(C2),CHAR(CODE(C2)),UPPER(CHAR(CODE(C2))),1)
#2- UPPER(LEFT(C2,1))&MID(LOWER(C2),2,999)
#3- left(A1) & lower(right(A1,len(A1)-1))
#4- UPPER(LEFT(A1)) & LOWER(MID(A1, 2, LEN(A1)-1))
#5- UPPER(LEFT(C4,1)) & LOWER(RIGHT(C4,LEN(C4)-1))
I hope someone out there can help everyone out in this forum by developing a formula which will accurately convert a paragraph over to Sentence Case because none of the formulas I have listed above seem to work right. Thanks in advance for your help.