Comma, lower case Letter

Manolocs

Active Member
Joined
Mar 28, 2008
Messages
340
Hello I need the first letter after a comma to be lower case, any help is more than welcome :)
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Hello I need the first letter after a comma to be lower case, any help is more than welcome :)
I am with AliGW on this... you are going to have to show several examples of the kind of text you are dealing with. One thing I am particularly interested in is if there can be more than one comma in the text.
 
Upvote 0
@Rick Rotstein, is only the first comma there will be more than one comma but normally we use lower case after comma, with minimum exceptions. Thank you for your time.
 
Upvote 0
@admiral100, this formula did not work :(
This is an example of what I need:
The man is old, He is 90 years old = The man is old, he is 90 years old
 
Upvote 0
@AliGW, sorry for the lack of information:
This is an example of what I need:
The man is old, He is 90 years old = The man is old, he is 90 years old
 
Upvote 0
=substitute(a1,mid(a1,find(",",a1)+2,1),lower(mid(a1,find(",",a1)+2,1)))
If you change your formula to this, it will not error out if the sentence does not contain a comma...

=SUBSTITUTE(A1,MID(A1,FIND(",",A1&",")+2,1),LOWER(MID(A1,FIND(",",A1&",")+2,1)))

Here is a shorter formula (one less function call) that will work the same...

=REPLACE(A1,FIND(",",A1&",")+2,1,LOWER(MID(A1,FIND(",",A1&",")+2,1)))
 
Upvote 0

Forum statistics

Threads
1,216,084
Messages
6,128,730
Members
449,465
Latest member
TAKLAM

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top