+ Reply to Thread
Results 1 to 7 of 7

Number format for cells

  1. #1
    bgscoop
    Guest

    Number format for cells

    I need to enter full credit card numbers into an excel sheet that is
    created to keep track of transactions. I need to see only the last 4
    digits, though.
    Tried many things so i hope you guys can help me figure this one out.


  2. #2
    Bondi
    Guest

    Re: Number format for cells


    bgscoop wrote:
    > I need to enter full credit card numbers into an excel sheet that is
    > created to keep track of transactions. I need to see only the last 4
    > digits, though.
    > Tried many things so i hope you guys can help me figure this one out.


    Hi,

    Maybe you can enter the full creditcard number in a cell formated as
    Text. Then take out the last 4 digites with something like:

    =--RIGHT(A1,4)

    Regards,
    Bondi


  3. #3
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    It might be better to use a Input box via VBA.

    If you want to continue with a formula then change the font colour of the ccell your entering the no. to white and enter this formula in the next cell

    =REPT("#",LEN(B2)-4)&RIGHT(B2,4)

    VBA Noob

  4. #4
    bgscoop
    Guest

    Re: Number format for cells


    > Hi,
    >
    > Maybe you can enter the full creditcard number in a cell formated as
    > Text. Then take out the last 4 digites with something like:
    >
    > =--RIGHT(A1,4)
    >
    > Regards,
    > Bondi



    i tried entering only right(a1,4) at first to see how it worked
    in the cell it displayed ' #name? ' (without the apostrophies)
    any idea how to get through this ?


  5. #5
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    You can't put the text and forumla in one cell.

    Need to be No in A1 and Formula in B1

  6. #6
    Bondi
    Guest

    Re: Number format for cells


    bgscoop wrote:
    > > Hi,
    > >
    > > Maybe you can enter the full creditcard number in a cell formated as
    > > Text. Then take out the last 4 digites with something like:
    > >
    > > =--RIGHT(A1,4)
    > >
    > > Regards,
    > > Bondi

    >
    >
    > i tried entering only right(a1,4) at first to see how it worked
    > in the cell it displayed ' #name? ' (without the apostrophies)
    > any idea how to get through this ?

    Hi,

    The #Name error usualy comes when Excel is not recognizing the formula.
    Are you using a English version of Excel?

    The common problem when entering credit card numbers is that they are
    16 digits and Excel will only take 15. That is why the Formatting as
    Text is necessary.

    Regards,
    Bondi


  7. #7
    bgscoop
    Guest

    Re: Number format for cells


    VBA Noob wrote:
    > You can't put the text and forumla in one cell.
    >
    > Need to be No in A1 and Formula in B1
    >
    >
    > --
    > VBA Noob



    It looks like i wasn't very clear about that
    i know i can't put them together and i haven't it just seems so from
    the way i wrote it
    VBA Noob your way worked like a charm thks a lot
    now i got another column with the hiden cc numbers and i just gotta
    find a way to erase the columns with the full cc numbers.


+ 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