+ Reply to Thread
Results 1 to 3 of 3

Finding a character in a cell

Hybrid View

  1. #1
    Registered User
    Join Date
    10-30-2012
    Location
    India
    MS-Off Ver
    Excel 2003
    Posts
    92

    Finding a character in a cell

    Hi All,

    I am trying to find a character in a cell and want to apply a formula for that.
    basically i have excel formula which i am trying to use in VBA macro.
    can any body help on this?

    formula is --- =LEFT(C2,FIND(":",C2)-1)

    the above formula i am trying to convert into vba macro code but no joy

    Sheets("Defects").Cells(i, 39).Value = Left(Sheets("Defects").Cells(i, 3).Value, Find(":", Sheets("Defects").Cells(i, 3).Value) - 1)
    But this code is not working, can you please help me out..

  2. #2
    Forum Guru TMS's Avatar
    Join Date
    07-15-2010
    Location
    The Great City of Manchester, NW England ;-)
    MS-Off Ver
    MSO 2007,2010,365
    Posts
    48,240

    Re: Finding a character in a cell

    With Sheets("Defects")
        .Cells(i, 39).Value = Left(.Cells(i, 3).Value, Application.WorksheetFunction.Find(":", .Cells(i, 3).Value) - 1)
    End With

    Regards, TMS
    Trevor Shuttleworth - Retired Excel/VBA Consultant

    I dream of a better world where chickens can cross the road without having their motives questioned

    'Being unapologetic means never having to say you're sorry' John Cooper Clarke


  3. #3
    Forum Expert
    Join Date
    10-09-2014
    Location
    Newcastle, England
    MS-Off Ver
    2003 & 2013
    Posts
    1,986

    Re: Finding a character in a cell

    Sheets("Defects").Cells(i, 39).Value = Left(Sheets("Defects").Cells(i, 3).Value, InStr(1, Sheets("Defects").Cells(i, 3).Value, ":")-1)

+ 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. Finding n'th character in a cell
    By Rinocerinho in forum Excel General
    Replies: 4
    Last Post: 07-22-2012, 05:42 AM
  2. [SOLVED] Finding/counting a given character within a cell
    By Bob in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 06-06-2006, 07:10 PM
  3. [SOLVED] Finding/counting a given character within a cell
    By Bob in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 06-06-2006, 12:49 PM
  4. Finding/counting a given character within a cell
    By Bob in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 06-06-2006, 10:45 AM
  5. Finding a character type within a cell
    By shineboxnj in forum Excel Formulas & Functions
    Replies: 14
    Last Post: 09-06-2005, 03:05 PM

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