Results 1 to 8 of 8

VBA Code Modification

Threaded View

  1. #1
    Registered User
    Join Date
    02-12-2011
    Location
    London
    MS-Off Ver
    Excel MAC 2011
    Posts
    12

    VBA Code Modification

    Hello there,
    I have some code - originally kindly given to me from someone here a long time ago.
    I need to modify it, I am not very good with VB and have been trying last 2 days without success.

    Currently this code searches for text which begins with a < and ends with >

    I know it is easy to adjust a single start and end character but I wish to search for more - e.g.. start with <span & ends with span>
    I really cannot figure this out if I enter these parameters I get no response back, any help gratefully received.
    Thanks

    EXISTING CODE

    Function TrimCell(rng As Range)
        Dim strTemp As String
        Dim n As Long
        Dim switch As Boolean
        
        For n = 1 To Len(rng)
            If Not switch Then
                If Mid(rng, n, 1) = "<" Then
                    strTemp = strTemp & Mid(rng, n, 1)
                    switch = True
                Else
                    strTemp = strTemp & ""
                End If
            Else
                If Mid(rng, n, 1) = ">" Then
                    strTemp = strTemp & Mid(rng, n, 1)
                    switch = False
                Else
                    strTemp = strTemp & Mid(rng, n, 1)
                End If
            End If
        Next
              
        TrimCell = strTemp
    End Function
    NEW CODE
    Function TrimCell(rng As Range)
        Dim strTemp As String
        Dim n As Long
        Dim switch As Boolean
        
        For n = 1 To Len(rng)
            If Not switch Then
                If Mid(rng, n, 1) = "<span" Then
                    strTemp = strTemp & Mid(rng, n, 1)
                    switch = True
                Else
                    strTemp = strTemp & ""
                End If
            Else
                If Mid(rng, n, 1) = "span>" Then
                    strTemp = strTemp & Mid(rng, n, 1)
                    switch = False
                Else
                    strTemp = strTemp & Mid(rng, n, 1)
                End If
            End If
        Next
              
        TrimCell = strTemp
    End Function
    Last edited by guapo; 06-12-2014 at 06:24 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. help with Code modification
    By onp in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-16-2014, 07:00 PM
  2. Little modification in code
    By mukeshbaviskar in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-18-2013, 02:15 PM
  3. code modification
    By tofimoon4 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 02-12-2010, 06:26 AM
  4. Modification to existing Code
    By Jim May in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-04-2006, 12:55 PM
  5. [SOLVED] modification for the code
    By srinivasan in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-20-2005, 11:05 AM

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