Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Printing Reports

Status
Not open for further replies.

Crashtestdummy

Materials
Joined
May 8, 2002
Messages
10
Location
AU
Hey all,

I'm writing an excel worksheet that will allow people to print pro-forma orders. What I am trying to do is that when they enter a stock value in this spreadsheet, and the value is lower than the minimum stock level set, for it to show up on an order. If the value entered is higher than the minimum value then it cant show on the pro-forma.
I'm hoping there is an easy way to do it.

Thanks in advance for your help people

Crash
 
You can compare the value in a cell to a set value and then have it trigger the routine to add to an order or not:

If Cells(row, column).Value > SomeNumber
Do Something
ElseIf Cells(row, column).Value < Then
Do SomethingElse
End If
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top