Running a Macro Daily

Jenniphurr

New Member
Joined
Mar 9, 2018
Messages
4
I am needing to track inventory age in column H. So far I have a button that I press first thing in the morning to run this macro. It add +1 to all the numbers that are in column H. My goal is to have my macro do this for me when I open the workbook. The thing is I only want it to perform this macro if the date has changed. Honestly I really just want to not push my age button, plus it takes one more step out of my inventory tracking.

Here is the macro I am working with at the moment. I am even trying to add in some vba code on top of my existing macro.

First off here is my age macro (this is what I link to a button to press each day)

Sub pasteifage()
Dim r As Range, cell As Range
Set r = Range("h:h")
For Each cell In r
If IsNumeric(cell.Value) Then
If cell.Value > 0 Then
cell.Value = cell.Value + 1
End If
Else
MsgBox "Cell " & cell.Address(0, 0) & " does not have a number"
Exit Sub
End If
Next
End Sub


I found this macro and tried to insert it into the above, but sadly no luck getting it to work.

If Sheetx.Range("rLastRun").Value2 < Date Then
<your macro>
Sheetx.Range("rLastRun").Value2 = Now()
End If


 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
If you are adding 1 to a value every morning you simply need to record the start date rounded down to midnight and subtract that from the current date rounded down to midnight (whole number) ... that will give you age in days

=Today-Start

In one column is the Born On Date or whatever you want to call it and the next column can be the age in days...

A2= '1/1/18' (format as date)
B2= '=Today()-A2' (format as number)
 
Last edited:
Upvote 0
I could possibly use this if, I can set that formula to only calculate if there is value within column H. That could work, but I have this page to be fairly dynamic and constantly moving data around. Some inventory does sit around if we are holding for concerns, but everyday new inventory is added and sorted into a different step of my process.


I could input this formula when I transfer new inventory, but this is end up making more steps for myself. Really the macro I have set up works 99% perfect with the only problem being it has to be manually pressed. If I have to add any more steps to this process, I'll just end up continuing to press the button.
 
Upvote 0
=IF(NOT(ISBLANK(H2)),...)

that would execute some function you place in the true result if the corresponging value in column H is not blank

Not sure what you mean by saying that running a macro is more efficient than a formula that just calculates whenever the workbook refreshes.

If you need an age in days... all you need to know is the start date... no need to keep a tally somewhere via macro
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,214
Messages
6,170,771
Members
452,353
Latest member
strainu

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