+ Reply to Thread
Results 1 to 4 of 4

Macro to move cell down a row based on criteria

Hybrid View

neilcarden Macro to move cell down a row... 02-20-2009, 12:09 PM
mewingkitty Re: Macro to move cell down a... 02-20-2009, 12:29 PM
mewingkitty Re: Macro to move cell down a... 02-20-2009, 01:22 PM
neilcarden Re: Macro to move cell down a... 02-23-2009, 05:20 AM
  1. #1
    Forum Contributor
    Join Date
    06-21-2006
    Location
    Sheffield, England
    MS-Off Ver
    Excel 2007
    Posts
    108

    Macro to move cell down a row based on criteria

    Hi all, I would like a simple macro that would actually move a cell based on criteria. In my case it would be:

    In row A, if a cell starts with 'Agent Name' then that cell needs to move down one cell replacing the contents of that cell...

    Hope that makes sense?
    Last edited by neilcarden; 02-23-2009 at 05:20 AM. Reason: Solved

  2. #2
    Forum Contributor mewingkitty's Avatar
    Join Date
    09-29-2008
    Location
    Fort McMurray, Alberta, Canada
    MS-Off Ver
    Excel 2003
    Posts
    949

    Re: Macro to move cell down a row based on criteria

    How many rows ?
    =IF(AND(OR(BLONDE,BRUNETTE,REDHEAD),OR(MY PLACE,HER PLACE),ME),BOW-CHICKA-BOW-WOW,ANOTHER NIGHT ON THE INTERNET)

  3. #3
    Forum Contributor mewingkitty's Avatar
    Join Date
    09-29-2008
    Location
    Fort McMurray, Alberta, Canada
    MS-Off Ver
    Excel 2003
    Posts
    949

    Re: Macro to move cell down a row based on criteria

    Dim x As Integer
    Dim y As Integer
    
    x = 1
    y = 100
    
    For x = 1 To 100
    If Left(Cells(y, 1), 10) = "Agent Name" Then
        Cells(y + 1, 1) = Cells(y, 1)
        Cells(y, 1) = vbNullString
    End If
    y = y - 1
    Next x
    
    End Sub
    I'd go with something like that.

  4. #4
    Forum Contributor
    Join Date
    06-21-2006
    Location
    Sheffield, England
    MS-Off Ver
    Excel 2007
    Posts
    108

    Re: Macro to move cell down a row based on criteria

    Hey thanks! Works fine!

+ 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