Apply working single row formula to all further rows with Click Button

RyanMc

New Member
Joined
Oct 21, 2017
Messages
2
Hi guys,

Complete newbie to VBA! I have created a stock management worksheet that I "simply" want to add or subtract from a running total with a click button to carry out the function. At the minute I have the following code:

Code:
Private Sub commandbutton1_click()


        Range("J5").Value = Range("J5").Value + Range("H5").Value
        Range("J5").Value = Range("J5").Value - Range("I5").Value
        Range("H5:I2000").ClearContents


End Sub

I could potentially have hundreds of lines running in rows that I would want this function to be carried out for if a value is present in column H (Goods In) or column I (Goods Out). I therefore also need to ignore blank cells.

I'm sure this is very straight forward but I'm stumped!

Thanks
Ryan
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Welcome to the board.

Try:
Code:
Private Sub commandbutton1_click()

    Dim x       As Long
    Dim arr()   As Variant
    
    x = Cells(Rows.count, 10).End(xlUp).row - 4
    arr = Cells(5, 8).Resize(x, 3).Value
    For x = LBound(arr, 1) To UBound(arr, 1)
        arr(x, 3) = arr(x, 3) + arr(x, 1) - arr(x, 2)
        arr(x, 1) = Empty
        arr(x, 2) = Empty
    Next x
    
    Cells(5, 8).Resize(UBound(arr, 1), UBound(arr, 2)).Value = arr
    Erase arr

End Sub
 
Last edited:
Upvote 0
Thanks for that! Worked perfectly!

I'm at the very start of developing a fairly robust stock management database where I will eventually want to submit a date with each addition or removal of stock in order to build a weekly/monthly usage and forecasting model...wish me luck!
 
Upvote 0

Forum statistics

Threads
1,215,440
Messages
6,124,882
Members
449,193
Latest member
PurplePlop

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