A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Custom Format
"("General")";"("General")";"("General")";"("@")"
I think you can reduce that Custom Format down to this...
(General);(@)
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
How to custom format a cell range with a parenthesis around text.
for example I need to format this column which contain Name of people inside a parenthesis, so how do I do that, anyone help me please? here is a screen shot
| Name |
|---|
| Hon |
| For |
| Che |
| Hon |
| Toy |
| Toy |
| Hon |
| For |
| Che |
| Che |
| GMC |
| GMC |
| For |
| Hon |
| Toy |
| GMC |
| Che |
| Hon |
| Toy |
| For |
Moved from Internet Explorer
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Custom Format
"("General")";"("General")";"("General")";"("@")"
I think you can reduce that Custom Format down to this...
(General);(@)
Custom Format
| "("General")";"("General")";"("General")";"("@")" |
|---|
Or Macro
Sub Test()
Dim cell As Range
For Each cell In Selection
cell.Value = "(" & cell.Value & ")"
Next cell
End Sub
Note: the macro does not format. . . . .it hard codes the parens.
Gord
Your construct works as advertised Rick
Thanks for the update.
Gord