import out of stock item to another sheet

rapitorres

New Member
Joined
Oct 5, 2017
Messages
39
Office Version
  1. 2010
Platform
  1. Windows
Hi.

what i have here is a little inventory system and its working with barcode.
in the OUT sheet all out of stock is automatically marked red. im thinking is there a way that i can import all (0) or out of stock products
to a different sheet and automatically remove when Stocked, so that i can monitor all the OUT OF STOCK ITEMS

feel free to navigate to my simple inventory
btw due to large amount of data manual calculation is applied. please press F9 for calculation

 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Seeing that no one has helped you with this question. I suggest you give more specific details. I never download and open files posted here on this forum.
 
Upvote 0
Seeing that no one has helped you with this question. I suggest you give more specific details. I never download and open files posted here on this forum.
Thankyou for replying :)

here ive put some pointers.
 

Attachments

  • MREXEL.png
    MREXEL.png
    159.9 KB · Views: 21
  • MREXCEL1.png
    MREXCEL1.png
    115.3 KB · Views: 19
Upvote 0
So on sheet named "Out" when the value in column G is manually changed to O that's a zero
You want this row of Data copied to a sheet named "Out Of Stock" which is already created.
Is that true?
And if that zero in column G of sheet named "Out" is changed back to any thing greater then zero you want that row deleted from sheet named "Out Of Stock"

Is this all true?
And these values are being changed manually and not the result of a formula. Is this true?

And is there some sort of unique value in some column which could be used as a identifier of the row?
Sort of like a customer id number or unique part number?

Like can we use column A which is a barcode number. Would that work?

So if on sheet Out the number in column G is changed to zero we copy that row to sheet named out of stock.
But if later column G is changed to a value greater then zero the script looks for the barcode number in column A and deletes that row in sheet named Out of stock.

If this something that would work?
If not give me more information.
 
Upvote 0
There are two ways to run a script:
You can press a button for example.
Or you can manually change a cell value.
Like change 5 to 0 would activate a script or just enter a zero.
Which are you more interested in?
 
Upvote 0
So on sheet named "Out" when the value in column G is manually changed to O that's a zero
You want this row of Data copied to a sheet named "Out Of Stock" which is already created.
Is that true?
And if that zero in column G of sheet named "Out" is changed back to any thing greater then zero you want that row deleted from sheet named "Out Of Stock"

Is this all true?
And these values are being changed manually and not the result of a formula. Is this true?

And is there some sort of unique value in some column which could be used as a identifier of the row?
Sort of like a customer id number or unique part number?

Like can we use column A which is a barcode number. Would that work?

So if on sheet Out the number in column G is changed to zero we copy that row to sheet named out of stock.
But if later column G is changed to a value greater then zero the script looks for the barcode number in column A and deletes that row in sheet named Out of stock.

If this something that would work?
If not give me more information.
So on sheet named "Out" when the value in column G is manually changed to O that's a zero
You want this row of Data copied to a sheet named "Out Of Stock" which is already created.
Is that true?YEP ANY ZERO (0) THAT IS LISTED IN G COLUMN WILL BE AUTOMATICALLY COPIED OR MOVE TO THE SHEET (OUT OF STOCK SHEET) BTW THE SHEET WAS CREATED FOR SAMPLE PURPOSE ONLY
And if that zero in column G of sheet named "Out" is changed back to any thing greater then zero you want that row deleted from sheet named "Out Of Stock"
YEP THIS IS CORRECT :)
Is this all true?
And these values are being changed manually and not the result of a formula. Is this true?
NOPE ALL OF THIS IS RUN BY FORMULA. (SUMIFS AND VLOOKUP) THE ONLY MANUALLY ENTERED IS THE (E) COLUMN WHICH IS THE QTY THAT DEFINES HOW MANY STOCKS WILL BE SOLD OR OUT :)
And is there some sort of unique value in some column which could be used as a identifier of the row?
Sort of like a customer id number or unique part number?
IM CURRENTLY USING THE BARCODE IN COLUMN (A) AS AN IDENTIFIER
Like can we use column A which is a barcode number. Would that work?
YEP!
So if on sheet Out the number in column G is changed to zero we copy that row to sheet named out of stock.
But if later column G is changed to a value greater then zero the script looks for the barcode number in column A and deletes that row in sheet named Out of stock.
EXACTLY WHAT I WANTED :)
If this something that would work?
If not give me more information.
 
Upvote 0
There are two ways to run a script:
You can press a button for example.
Or you can manually change a cell value.
Like change 5 to 0 would activate a script or just enter a zero.
Which are you more interested in?
MAYBE ASLONG THAT THE VALUE IS ZERO IT WILL BE AUTOMATICALLY COPIED OR MOVE TO THE (OUT OF STOCK SHEET)
 
Upvote 0
Now that you say the values in column G are not being changed to zero manually then the script would have to run when you press a button which would not be automatically.

So can we just have the script look at sheet named Out and if it finds a zero in column G copy this row to sheet named Out of stock and not delete the row from sheet named Out.

Next time you run the script we clear the sheet named Out of stock and then copy all the rows on sheet named Out that has a zero in column G to sheet named Out of stock.

This would only happen when you click a button.
Would this work?
 
Upvote 0
Now that you say the values in column G are not being changed to zero manually then the script would have to run when you press a button which would not be automatically.

So can we just have the script look at sheet named Out and if it finds a zero in column G copy this row to sheet named Out of stock and not delete the row from sheet named Out.

Next time you run the script we clear the sheet named Out of stock and then copy all the rows on sheet named Out that has a zero in column G to sheet named Out of stock.

This would only happen when you click a button.
Would this work?
YEAH! THATS PERFECT :)
 
Upvote 0
This script does this:
1. Deletes all rows on sheet named Out Of stock below row(1) I assume row(1) is a header row.
Let me know if you want that modified or modify yourself see note in script.
2. Any row on sheet named "Out" with a zero in column G will be copied to sheet name "Out Of Stock"

VBA Code:
Sub Filter_Me_Please()
'Modified  3/12/2021  5:04:53 AM  EDT
Application.ScreenUpdating = False
Dim lastrow As Long
Dim lastrowa As Long
Dim c As Long
Dim s As Variant
c = 7
s = "0"
lastrow = Sheets("Out").Cells(Rows.Count, c).End(xlUp).Row
lastrowa = Sheets("Out Of Stock").Cells(Rows.Count, 1).End(xlUp).Row
Sheets("Out Of Stock").Rows(2).Resize(lastrowa).Delete 'modify 2 to 3 or 4 what ever you need

With Sheets("Out").Cells(1, c).Resize(lastrow)

    .AutoFilter 1, s
    counter = .Columns(c).SpecialCells(xlCellTypeVisible).Count
    If counter > 1 Then
        .Offset(1).Resize(.Rows.Count - 1).SpecialCells(xlCellTypeVisible).EntireRow.Copy Sheets("Out Of Stock").Cells(2, 1)
    Else
        MsgBox "No values found"
    End If
    .AutoFilter
End With
Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,230
Messages
6,170,883
Members
452,364
Latest member
springate

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