Move rows from pending to completed tab

holyrollyp

New Member
Joined
Apr 2, 2023
Messages
13
Office Version
  1. 365
Platform
  1. Windows
Hello MrExcel Gurus/Friends,

I need help please. In the attached file, I wanted to create a macro that fires automatically whenever the Status column has a value of "Completed".
For all completed (status), I wanted to move that row from Pending tab to Completed tab. My Completed tab has some previously completed already, and the newly completed rows from pending tab, I need to keep adding into the list.
So basically, I want pending to have pending only, and keep adding all completed to the Completed tab.

Can you please help me. Thanks so much in advance for any help or recommendation.

Thanks,
Rolly
 

Attachments

  • Pending Tab.jpg
    Pending Tab.jpg
    73.7 KB · Views: 10
  • Completed Tab.jpg
    Completed Tab.jpg
    61 KB · Views: 9

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
This is a sheet change again script:
Right click on sheet named Pending.
And paste in this code.

I f you enter the value "Completed" into any row column 5 of sheet named "Pending".
The script will copy this row to a sheet named "Completed"
And deleted the row from sheet named "Pending"

VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 5 Then
Application.ScreenUpdating = False
Application.EnableEvents = False
Dim answer As String
Dim Lastrow As Long
Dim ans As Long
answer = Target.Value
If answer = "Completed" Then
ans = Target.Row

Lastrow = Sheets("Pending").Cells(Rows.Count, "E").End(xlUp).Row + 1
Lastrow2 = Sheets("Completed").Cells(Rows.Count, "E").End(xlUp).Row + 1

Sheets("Pending").Rows(ans).Copy Sheets("Completed").Cells(Lastrow2, 1)
Sheets("Pending").Rows(ans).Delete
Application.ScreenUpdating = True

End If
End If
Application.EnableEvents = True

End Sub
 
Upvote 0
Solution
Thanks very much, @My Aswer Is This.
I did right click on the Pending tab and pasted the code as is. I clicked Saved in the VB code editor and then Close the window. How can I call this Change sub now?
I went to Developer > Macros, and I don't see the Macro I just saved. I went to Visual Basic and I can actually see the code I saved, I just can't figure how to run it (automatically each time there is completed value). I already turned the macro enable on. My file now says .XLSM
How do I run this code now? Can you please assist once more?
 

Attachments

  • Missing the vb code macro.jpg
    Missing the vb code macro.jpg
    106.7 KB · Views: 12
  • Macro Security.jpg
    Macro Security.jpg
    49.3 KB · Views: 13
  • VB.jpg
    VB.jpg
    254.6 KB · Views: 11
Upvote 0
This macro will not be seen in a Module.
The script runs as I mentioned in my last Post:
Quote:
I f you enter the value "Completed" into any row column 5 of sheet named "Pending".
 
Upvote 1
This macro will not be seen in a Module.
The script runs as I mentioned in my last Post:
Quote:
I f you enter the value "Completed" into any row column 5 of sheet named "Pending".
The script is not running, unfortunately. am i not going to trigger it?
 
Upvote 0
The script works for me.
Now I see you have an image here of all your settings. So not sure what all that is about.
Your workbook must be saved as macro enabled
And from your image of settings. You do not have macro enabled.
I have never got into trust settings
 
Upvote 1
Hello again. I have my macro enabled. The code ran for a bit and then suddenly it no longer works and don't know what's causing it to stop to work.
 
Upvote 0
Hello again. I have my macro enabled. The code ran for a bit and then suddenly it no longer works and don't know what's causing it to stop to work.

Hi
Try running this code in a STANDARD module & see if resolves your issue.

VBA Code:
Sub Reset()
    Application.EnableEvents = True
End Sub

Dave
 
Upvote 1
Hi
Try running this code in a STANDARD module & see if resolves your issue.

VBA Code:
Sub Reset()
    Application.EnableEvents = True
End Sub

Dave
Thanks, Dave. I did as you instructed, but the code won't work still. I confirm that macro has been enabled already. I had the original code added under the Pending tab, then your code into the standard module.
 
Upvote 0
Hi
code you have is event code & should, providing events have not been disabled, automatically run when you make a direct change (not by formula) to any cell in target range i.e Column 5 in the Pending worksheet.

If still not resolved post back & will look further.

Dave
 
Upvote 1

Forum statistics

Threads
1,221,525
Messages
6,160,326
Members
451,637
Latest member
hvp2262

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top