If job not completed carries over to the following days

Sweetlidelangel

New Member
Joined
Mar 24, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Is there a way for a row to keep carrying over to the following worksheets based on a couple of different cells and also stop based on a different cell value?
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
There is, I believe it would need to be in VBA to do this though. Without seeing any of your data it's extremely hard to provide any output. Im not sure how the sheet naming convention works where the headings are or where the Specific cells are that need to be flagged when completed. Lets assume that the flag is in Column O and it a N.
VBA Code:
Sub Sweetlidelangel()


    LR = Cells(Rows.Count, "A").End(xlUp).Row           'Assuming you have data in Column A.   Change the "A" to whichever column has data
    ActiveSheet.Range("$A$1:$O$" & LR).AutoFilter Field:=15, Criteria1:="N" 'Assuming you'reusing "N" as incomplete.   Change it to "" if it's blank.
    Range("A1:O" & LR).SpecialCells(xlCellTypeVisible).Select
    Selection.Copy
    Sheets.Add After:=ActiveSheet
    ActiveSheet.Paste

End Sub
 
Upvote 0
There is, I believe it would need to be in VBA to do this though. Without seeing any of your data it's extremely hard to provide any output. Im not sure how the sheet naming convention works where the headings are or where the Specific cells are that need to be flagged when completed. Lets assume that the flag is in Column O and it a N.
VBA Code:
Sub Sweetlidelangel()


    LR = Cells(Rows.Count, "A").End(xlUp).Row           'Assuming you have data in Column A.   Change the "A" to whichever column has data
    ActiveSheet.Range("$A$1:$O$" & LR).AutoFilter Field:=15, Criteria1:="N" 'Assuming you'reusing "N" as incomplete.   Change it to "" if it's blank.
    Range("A1:O" & LR).SpecialCells(xlCellTypeVisible).Select
    Selection.Copy
    Sheets.Add After:=ActiveSheet
    ActiveSheet.Paste

End Sub


Does the below help explain the first step i am trying to do?



1711346963712.png
 
Upvote 0

Forum statistics

Threads
1,221,848
Messages
6,162,406
Members
451,762
Latest member
Brainsanquine

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