Number key pad bullet points vba

MA 101 Reputation points
2021-10-01T11:18:28.273+00:00

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

Microsoft 365 and Office | Excel | For business | Windows
Developer technologies | Visual Basic for Applications
{count} votes

Accepted answer
  1. Viorel 122.6K Reputation points
    2021-10-04T05:08:30.11+00:00

    Check an example:

    Dim r As Range
    Set r = Sheet1.Range("A1:A4") ' sample range
    
    r.NumberFormat = ChrW(&H25A0) & " @"
    
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.