Simple stock control

maiwarits

New Member
Joined
Jul 17, 2022
Messages
34
Office Version
  1. 365
Platform
  1. Windows
Hello Sir,

I try to create simple stock control for my gas cylinder in my work to control stock IN and OUT.

VBA Code:
Sub addStock()

Dim balanceStock As Double
Dim Col As Integer
'Check imput Applies columns E & F only ??
If ActiveCell.Column < 5 Or ActiveCell.Column > 6 Then Exit Sub

Col = Month(Now) + 12

balanceStock = InputBox("Amount?")

With ActiveCell
    .Value = .Value + balanceStock
    If balanceStock < 0 Then Col = Col + 1
    Cells(.Row, Col) = Cells(.Row, Col) + balanceStock
End With

End Sub

I will always input the number of gas cylinders in column E(LAB1) and column F(LAB2) by massage box.
when Positive value = stock in, Negative value = stock out

The program should be finding current month to add stock IN and OUT after place OK in massage box

Example1 : Stock in LAB1 at Jul

1720159903036.png


When Active Cell = E5
If I input 5 in text box, 5 should go in E5 by ActiveCell.Value = ActiveCell.Value + 5.
At current month (Jul-Column T) 5 value should go in the cell T5 of July by ActiveCell.Value = ActiveCell.Value + 5.also.

Expected result
1720160069529.png


Example2 : Stock out LAB2 at Jul

1720160290848.png

When Active Cell = F6
If I input -2 in text box, -2 should go in U6 by ActiveCell.Value = ActiveCell.Value + (-2).
At current month (Jul-Column U) -2 value should go in the cell U6 of July by ActiveCell.Value = ActiveCell.Value + (-2).also.
Expected result
1720160424451.png


Example3 : Stock out LAB1 at Aug
1720160925404.png

When Active Cell = E5
If I input -1 in text box, -1 should go in E5 by ActiveCell.Value = ActiveCell.Value + (-1).
At current month (Aug-Column W) -1 value should go in the cell W5 of Aug by ActiveCell.Value = ActiveCell.Value + (-1).also.

Expected result
1720161093894.png


If you require more information, please let me know.
Thanks!
 

Attachments

  • 1720160958179.png
    1720160958179.png
    36.7 KB · Views: 3
  • 1720161072876.png
    1720161072876.png
    23.3 KB · Views: 8

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
It is hard to work with a picture. It would be easier to help if you could use the XL2BB add-in (icon in the menu) to attach a screenshot (not a picture) of your sheet. Alternately, you could upload a copy of your file (de-sensitized if necessary) to a free site such as www.box.com or www.dropbox.com. Once you do that, mark it for 'Sharing' and you will be given a link to the file that you can post here.
 
Upvote 0
It is hard to work with a picture. It would be easier to help if you could use the XL2BB add-in (icon in the menu) to attach a screenshot (not a picture) of your sheet. Alternately, you could upload a copy of your file (de-sensitized if necessary) to a free site such as www.box.com or www.dropbox.com. Once you do that, mark it for 'Sharing' and you will be given a link to the file that you can post here.
Sorry for that mistake.

Here, I have upload it to google drive.
2024 Gas in out control

Thanks!
Warit
 
Upvote 0
Try the below with 1 small change :

i.e. Col = Month(Now) + 13

VBA Code:
Sub addStock()

Dim balanceStock As Double
Dim Col As Integer
'Check imput Applies columns E & F only ??
If ActiveCell.Column < 5 Or ActiveCell.Column > 6 Then Exit Sub

Col = Month(Now) + 13

balanceStock = InputBox("Amount?")

With ActiveCell
    .Value = .Value + balanceStock
    If balanceStock < 0 Then Col = Col + 1
    Cells(.Row, Col) = Cells(.Row, Col) + balanceStock
End With

End Sub
 
Upvote 0
Instead of above, please change to :

VBA Code:
Sub addStock()

Dim balanceStock As Double
Dim Col As Integer
'Check imput Applies columns E & F only ??
If ActiveCell.Column < 5 Or ActiveCell.Column > 6 Then Exit Sub

Col = 2 * Month(Now) + 6

balanceStock = InputBox("Amount?")

With ActiveCell
    .Value = .Value + balanceStock
    If balanceStock < 0 Then Col = Col + 1
    Cells(.Row, Col) = Cells(.Row, Col) + balanceStock
End With

End Sub
 
Upvote 0
Solution
Try the below with 1 small change :

i.e. Col = Month(Now) + 13

VBA Code:
Sub addStock()

Dim balanceStock As Double
Dim Col As Integer
'Check imput Applies columns E & F only ??
If ActiveCell.Column < 5 Or ActiveCell.Column > 6 Then Exit Sub

Col = Month(Now) + 13

balanceStock = InputBox("Amount?")

With ActiveCell
    .Value = .Value + balanceStock
    If balanceStock < 0 Then Col = Col + 1
    Cells(.Row, Col) = Cells(.Row, Col) + balanceStock
End With

End Sub
Hello Sir,

I have tried this but the result same as Col = Month(Now) + 12.

When the month has change to Aug it moves only one column to OUT column of July but I expected it to move to IN column of Aug.
 
Upvote 0
Instead of above, please change to :

VBA Code:
Sub addStock()

Dim balanceStock As Double
Dim Col As Integer
'Check imput Applies columns E & F only ??
If ActiveCell.Column < 5 Or ActiveCell.Column > 6 Then Exit Sub

Col = 2 * Month(Now) + 6

balanceStock = InputBox("Amount?")

With ActiveCell
    .Value = .Value + balanceStock
    If balanceStock < 0 Then Col = Col + 1
    Cells(.Row, Col) = Cells(.Row, Col) + balanceStock
End With

End Sub
This one work was I have expected.
However, could you please explain what happened with the previous code why it has move only one column?
 
Upvote 0
Copy and paste this code into the worksheet code module replacing your current code. Do the following: right click the tab name for your Yearly Stock sheet and click 'View Code'. Paste the code into the empty code window that opens up. Close the code window to return to your sheet. Enter values in column E or column F and press the ENTER key.
VBA Code:
Dim Val As Long
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    If Not Intersect(Target, Range("E:F")) Is Nothing Or Not Target.Row < 5 Then
        Val = Target.Value
    End If
    If Target.Cells.Count > 1 Then Exit Sub
    Application.ScreenUpdating = False
    'Clear the color of all cells
    Cells.Interior.ColorIndex = 0
    With Target
      'Highlight row and column of the selected cell
      .EntireRow.Interior.ColorIndex = 22
      .EntireColumn.Interior.ColorIndex = 24
    End With
  Application.ScreenUpdating = True
End Sub

Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.CountLarge > 1 Then Exit Sub
    If Intersect(Target, Range("E:F")) Is Nothing Or Target.Row < 5 Then Exit Sub
    Application.ScreenUpdating = False
    Application.EnableEvents = False
    Dim oldVal As Long, NewVal As Long
    NewVal = Target.Value
    Target.Value = Val + NewVal
    Set foundDate = Rows(3).Find(Format(Date, "mmm"), LookIn:=xlValues, lookat:=xlWhole)
    If NewVal > 0 Then
        Cells(Target.Row, foundDate.Column).Value = Cells(Target.Row, foundDate.Column).Value + NewVal
    Else
        Cells(Target.Row, foundDate.Column + 1).Value = Cells(Target.Row, foundDate.Column + 1).Value + NewVal
    End If
    Application.EnableEvents = True
    Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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