+ Reply to Thread
Results 1 to 3 of 3

Masking numbers

  1. #1
    RNeducator
    Guest

    Masking numbers

    I need to remove or hide the first 5 digits in a string of 9 numbers for a
    column. Any easy way to do this?

  2. #2
    bj
    Guest

    RE: Masking numbers

    If you need it to be a number try
    =value(right(A1,4))
    if it can be text don't use the value()

    "RNeducator" wrote:

    > I need to remove or hide the first 5 digits in a string of 9 numbers for a
    > column. Any easy way to do this?


  3. #3

    Re: Masking numbers

    Hello,

    =--MID(A1,6,LEN(A1)-5)
    to get result as a number

    =MID(A1,6,LEN(A1)-5)
    to get it as a string

    If you are sure that it's a number and 9 digits you can take
    =MOD(A1,10000)
    or
    =--RIGHT(A1,4)

    HTH,
    Bernd


+ Reply to Thread

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