Dear All,
Is there a way to search and remove “,” (comma) that appears as last character of content in a table cell?
Thank you in advance
Ridz
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
Home » Forums » AskWoody support » Productivity software by function » MS Word and word processing help » Remove comma from cell content (2003)
If the comma is in a certain column in a table, you can select only that column and run a find/replace command finding a comma and replacing with nothing. (Leave replace blank). The replace will only take place in the selected column. At the end, choose NO when responding to “Do you want to continue with rest of doc” prompt.
I have been testing the find string:
>(*^44) or >(^44) or >, or >(,)…
but cannot seem to get anyto work… It still finds ALLcommas in the string.
I guess I am getting the codes wrong.
The find replace feaure is really powerful to replace many things, but this one has got me
Maybe a Word Guru can conjure up a macro to do the job.
Try this macro:
Sub RemoveCommaFromEnd()
Dim oTable As Table
Dim oCell As Cell
Dim oRange As Range
Application.ScreenUpdating = False
For Each oTable In ActiveDocument.Tables
oTable.Select
For Each oCell In Selection.Cells
If Asc(Right(oCell.Range.Text, 3)) = 44 Then
Set oRange = oCell.Range
oRange.MoveEnd Unit:=wdCharacter, Count:=-1
oRange.Characters.Last.Delete
End If
Next oCell
Next oTable
Application.ScreenUpdating = True
End Sub
Note: the code will not remove a comma if there is an empty paragraph after it (a mistake people often make in table cells); it could be expanded to take care of that too.
Hans,
In your and otherw experienced in Word… Is there no way to do this with find/replace. I know I struggled as you can see in the previous post, but the > search character allows to search at the end of the word…so can this be tweeked in any way to do the job without that rather impressive macro you wrote?
Cheers
Sorry… I meant “In your or others opinion who are experienced in Word”…
I hear what you say, but the > search character is used like a input mask character to find a character at the end of the word. Hence me trying (,)>
This is what Word help has to say:
To find Type Example Any single character ? s?t finds sat and set. Any string of characters * s*d finds sad and started. The beginning of a word < (in)> finds in and within, but not interesting.
It works in the example, but not for a comma. My only assumption is that it only works for alpha chars and numbers. ? That is why I tried the ascii codes (^44).
A “word” is a series of characters delimited by interpunction such as a space, comma, period, colon, semicolon, question mark, exclamation mark, paragraph end and no doubt others. Hence, a comma is not part of a word.
But once again, even if you could find a comma at the end of a word, how would that help? There could also be a comma at the end of a word in the middle of a cell, and you wouldn’t want to remove that. So there is no point in trying to use > here.
Can we assume that all commas (other than the last comma in a cell) are followed by a space?
In which case we do a 3 stage change
Find ‘, ‘ (Comma Space) and replace with ‘!#’ (or some similar unique combination)
Find ‘,’ (Comma) and replace with ” (empty string)
Find ”!#’ and replace with ‘, ‘ (Comma Space)
That is a clever thought, but the assumption could be dangerous – what if there are numbers such as 12,345.67?
Also, the original poster mentioned that this is a long document with many tables. A Replace All would work throughout the document (not only in tables). Selecting each table in turn, then replacing within the selection only becomes tedious after a while.
The macro I posted will loop through all tables in the document, it doesn’t affect other parts of the document.
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.