Help with Excel if function and macros

P

perl

Hi everyone,

I"m currently working on an excel file for shipping. I created a macro which
automatically makes a line jump onto a worksheet called "shipped orders" once
the status of the line is "shipped". Now I would like to add an if function
that if Cell N1 contains a ups shipping# the status should change to
"shipped". the function worked however for some reason the line did not jump.
Any Solution? I would be grateful if anyone could help.

Kind Regards,

Perl
 
P

perl

Hi,

I'm not sure what your refering to. do you want me to repost my question
under general comments?
 
P

perl

sorry gottcha

my code is:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If UCase(Trim(Target.Value)) = "SHIPPED" Then
Application.EnableEvents = False
Target.EntireRow.Copy _
Worksheets("Shipped Orders").Cells(Rows.Count, 1).End(xlUp)(2).EntireRow
Target.EntireRow.Delete
Application.EnableEvents = True
End If

End Sub

thanks in advance,

Perl
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top