+ Reply to Thread
Results 1 to 8 of 8

If Right Left Query

Hybrid View

  1. #1
    Registered User
    Join Date
    05-05-2006
    Location
    Kent, England
    Posts
    37

    If Right Left Query

    How can I return the first 6 numbers of a cell if the 7th number in the cell equals 1 and return all 7 numbers if the seventh cell is greater than 1

    ie 1234561 would be 123456
    ie 1234562 would be 123456-2
    ie 1234563 would be 123456-3

    thank you kindly

  2. #2
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699
    Try

    =LEFT(A1,7-(RIGHT(A1)=1))

    If you want a - in there too

    =LEFT(A1,6)&IF(RIGHT(A1)=1,"","-"&RIGHT(A1))

  3. #3
    Registered User
    Join Date
    05-05-2006
    Location
    Kent, England
    Posts
    37
    Thanks daddy but it's failing on the =1

    even if I put >1 it does not work.

    for some reason it is not looking at the 7th digit and recognising it as equalling 1 (or greater than 1 when in input >1)....

    Any more ideas greatly appreciated

    Thank you very much

  4. #4
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699
    see tony's solution.....or my revision..... Because RIGHT function returns text

    =RIGHT(A1) will never equal 1, it will be "1"

  5. #5
    Registered User
    Join Date
    05-05-2006
    Location
    Kent, England
    Posts
    37
    Legends the two of you!

    Many Thanks for the solution

    Have a GREAT DAY!

  6. #6
    Valued Forum Contributor tony h's Avatar
    Join Date
    03-14-2005
    Location
    England: London and Lincolnshire
    Posts
    1,187
    =LEFT(B3,6) & IF(RIGHT(B3,1)>"1","-" & RIGHT(B3,1),"")

    assuming data in B3 and length is 7

    hope this helps

  7. #7
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,699
    tony's post reminds me that the result of RIGHT function is always text, so for my suggestions to work they'd need to be

    =LEFT(A1,7-(RIGHT(A1)="1"))

    and

    =LEFT(A1,6)&IF(RIGHT(A1)="1","","-"&RIGHT(A1))

    ...serves me right for not testing

  8. #8
    Valued Forum Contributor tony h's Avatar
    Join Date
    03-14-2005
    Location
    England: London and Lincolnshire
    Posts
    1,187
    Daddy long legs:

    I do like the sneakiness of you first solution. It didn't occur to me.

    regards

+ 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