+ Reply to Thread
Results 1 to 2 of 2

enter formula to copy characters in a cell less last one

  1. #1
    BC@D
    Guest

    enter formula to copy characters in a cell less last one



  2. #2
    Forum Contributor
    Join Date
    03-13-2005
    Posts
    6,195
    =left(a1,len(a1)-1)

    of course, you may want to add a 'null data' test, and you may also want to drop the last character ONLY if it is an asterisk etc

    =IF(LEN(A1)<1,"",IF(RIGHT(A1,1)<>"*",A1,LEFT(A1,LEN(A1)-1)))

    Hope this helps

    --

    Last edited by Bryan Hessey; 04-05-2006 at 09:12 PM.

+ 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