I'm trying to write a simple inventory management script in Excel to use in my department. My sheets looks like this..

Though I have some programming experience, this Excel-VBA thing seems totally greek to me. I have a friend who was kind enough to give me the following code but I'm clueless as to how is it going to run or even if it's correct or not. Please help me get this program running.
Private Declare Function ShellExecute Lib "shell32.dll" _
Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, _
ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, _
ByVal nShowCmd As Long) As Long
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Dim lngResponse As Long
Dim URL As String, strEmail As String, strSubject As String
If Left(Target.Address, 2) = "$D" Then
If Target.Value < Range("$E" & Right(Target.Address, 2)).Value Then
lngResponse = MsgBox("The inventory quantity for this item has dropped below the reorder level. Would you like to reorder this item?", vbYesNo)
If lngResponse = vbYes Then
strEmail = Range("$H" & Right(Target.Address, 2)).Value
strSubject = "New order for " & Range("$F" & Right(Target.Address, 2)).Value & " '" & Range("$B" & Right(Target.Address, 2)).Value & "' items"
strSubject = Application.WorksheetFunction.Substitute(strSubject, " ", "%20")
strURL = "mailto:" & strEmail & "?subject=" & strSubject
ShellExecute 0&, vbNullString, strURL, vbNullString, vbNullString, vbNormalFocus
End If
End If
End If
End Sub
The following are my requirements :-
- When the "Quantity in Stock" falls below the "Reorder level", a message box should prompt the user to ask if he wants to mail the concerned supplier("Supplier Email") for "Quantity in Reorder" number of "Name" type items.
- The method to trigger this program should be as simple as possible so that most employees in my department can use this. Most of them are comfortable using MS Excel's basic functionality but not more than that.
I also want to know the reason of this "ShellExecute" being there.
Any help would be highly appreciated
FollowHyperlink. I would not trigger the re-order mail when the stock amount dips below the limit though, but instead add some conditional formatting to turn the row red when the amount on hand is low. You could then add a button to send a mail for the currently-selected row. – Tim Williams Dec 13 '12 at 4:47ShellExecutewill run the default handler for themailto:protocol. you can also see this happen withhttp:. try to run (WIN+R)http://www.stackoverflow.comand see this site come up in your default browser – Sean Cheshire Dec 13 '12 at 14:59