+ Reply to Thread
Results 1 to 6 of 6

Left with Find vba

  1. #1
    Registered User
    Join Date
    04-07-2013
    Location
    belfast
    MS-Off Ver
    Excel 2010
    Posts
    26

    Left with Find vba

    I am unable to get the find function working in excel. Basically what I am trying to do is return the left portion of a cell until the string "/" is found.


    Please Login or Register  to view this content.
    I have attached a trial spreadsheet.
    Attached Files Attached Files

  2. #2
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,706

    Re: Left with Find vba

    the Find function is not a valid VBA function. You will need to use the Instr function. Look here for a quick tutorial and syntax explanation

    http://www.techonthenet.com/excel/formulas/instr.php
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  3. #3
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,706

    Re: Left with Find vba

    Alternatively, you could use this syntax.

    Please Login or Register  to view this content.

  4. #4
    Registered User
    Join Date
    04-07-2013
    Location
    belfast
    MS-Off Ver
    Excel 2010
    Posts
    26

    Re: Left with Find vba

    The solution in your second post works but why does it require double quotes to work. Single quotes work with find in excel formula.
    I would never have figured that one out.

    I have tried unsuccessfully to get instr to work with left. Can you please show me what the syntax would be to make that work.

  5. #5
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Left with Find vba

    Hi,

    Range("C2").Value = Left(Instr(A2),"/")

    Re your 1st Q. The Excel formula Alan has given you, when entered directly in Excel itself contains a string literal, viz "/". When entered using VBA the whole formula is already encloses in its own "" literal quotes, hence any embedded quotes that are integral to an Exccel formula need to be further wrapped in their own quotes. Hence that's why you often see the ""sometext"" construction in VBA code that is adding a formula to the worksheet.
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  6. #6
    Registered User
    Join Date
    04-07-2013
    Location
    belfast
    MS-Off Ver
    Excel 2010
    Posts
    26

    Re: Left with Find vba

    Quote Originally Posted by Richard Buttrey View Post
    Hi,

    Range("C2").Value = Left(Instr(A2),"/")

    Re your 1st Q. The Excel formula Alan has given you, when entered directly in Excel itself contains a string literal, viz "/". When entered using VBA the whole formula is already encloses in its own "" literal quotes, hence any embedded quotes that are integral to an Exccel formula need to be further wrapped in their own quotes. Hence that's why you often see the ""sometext"" construction in VBA code that is adding a formula to the worksheet.
    Excellent. Thank you

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Truncating: Mid, Left, Right, & Find.....Help!
    By rturnbow in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 04-06-2013, 05:40 PM
  2. IF FIND LEFT help
    By ScabbyDog in forum Excel General
    Replies: 5
    Last Post: 03-17-2013, 12:56 PM
  3. Replies: 2
    Last Post: 02-12-2013, 12:47 AM
  4. =FIND from right instead of left?
    By mewingkitty in forum Excel General
    Replies: 3
    Last Post: 11-27-2008, 04:16 AM
  5. Left, Right, Mid, Find...
    By Petitboeuf in forum Excel General
    Replies: 4
    Last Post: 02-27-2007, 11:12 AM

Tags for this Thread

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