Results 1 to 3 of 3

Prefix number with '

Threaded View

  1. #3
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Prefix number with '

    And for the sake of demo'ing the Eval method:

    Sub RoundSelection()
    Dim rngArea As Range
    For Each rngArea In Selection.SpecialCells(xlCellTypeConstants).Areas
        With rngArea
            .NumberFormat = "@"
            .Value = Evaluate("IF(ISNUMBER(--(" & .Address & ")),ROUND(" & .Address & ",2),REPT(" & .Address & ",1))")
        End With
    Next rngArea
    End Sub
    if you want the apostrophe as opposed to just storing as text - remove the NumberFormat line and use ""'""&ROUND(...)
    Last edited by DonkeyOte; 03-10-2010 at 03:51 AM. Reason: added note re: '

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1