+ Reply to Thread
Results 1 to 4 of 4

modify current VBA help

Hybrid View

richardlaffan modify current VBA help 03-25-2015, 10:45 AM
JOHN H. DAVIS Re: modify current VBA help 03-25-2015, 11:02 AM
richardlaffan Re: modify current VBA help 03-25-2015, 12:22 PM
JOHN H. DAVIS Re: modify current VBA help 03-25-2015, 12:40 PM
  1. #1
    Registered User
    Join Date
    11-22-2010
    Location
    ireland
    MS-Off Ver
    Excel 2003
    Posts
    3

    modify current VBA help

    I need to modify a current bit of code

    Sub newvers()
    Range("A595:C595").Copy Sheets("PRODUCT INFO").Range("A" & Rows.Count).End(xlUp).Offset(1)
    Range("A595:C595").Select
    Selection.ClearContents
    Range("A594").Select
    End Sub

    I need to make sure that the content of cell A595 is not anywhere in the sheet product info,
    If it does exist within product info i would like a message box to be displayed and the code to stop running

    any bit of help on this is much appreciated

  2. #2
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: modify current VBA help

    Please use code tags when posting. Maybe:

    Sub richardlaffan()
    Dim x As Range
    Dim ws As Worksheet, ws2 As Worksheet
    Set ws = ActiveSheet
    Set ws2 = Sheets("PRODUCT INFO")
    Set x = Sheets("PRODUCT INFO").UsedRange.Find(ws.Cells(595, "A").Value, LookIn:=xlValues, lookat:=xlWhole)
        If Not x Is Nothing Then
            MsgBox "What Do You Want The Message Too Say??"
        Else
            ws.Range("A595:C595").Copy ws2.Range("A" & Rows.Count).End(3)(2)
            ws.Range("A595:C595").ClearContents
        End If
            Set x = Nothing
    End Sub

  3. #3
    Registered User
    Join Date
    11-22-2010
    Location
    ireland
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: modify current VBA help

    John, you are a life saver, thanks very much, I will use tags going forward

  4. #4
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: modify current VBA help

    You're welcome. Glad to help out and thanks for the feedback.

+ 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. [SOLVED] How can I modify my current code to not change once populated
    By Dena in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 09-05-2013, 01:52 PM
  2. Modify Current VBA Which i Use To Save Excel 2010 File to CSV
    By magnum4u in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 01-07-2013, 10:39 AM
  3. [SOLVED] Making a UserForm to modify current variables
    By bassinator in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-30-2012, 09:29 AM
  4. [SOLVED] Modify Current VBA Cell Background Color Code
    By boldcode in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-10-2011, 02:29 AM
  5. Need to modify current vlookallsheets function
    By schueyisking in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-21-2008, 07:24 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