
3,916 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi
Using number key pad one can insert bullets points by using Alt + 254 @ in the custom format.
What would be the equivalent vba code for the above to insert bullet points in existing group of cells without deleting its cell contents?
Many Thanks
Check an example:
Dim r As Range
Set r = Sheet1.Range("A1:A4") ' sample range
r.NumberFormat = ChrW(&H25A0) & " @"