G
Guest
I am trying to make a report that shows how many units are in stock and what the level (number) has to get down to before it's time to re-order more. When that number gets below the re-order level, I want the units to reorder to become visible. I have the properties of the units to reorder set to Visible=no and my code looks like this. I am working from the Detail section, OnPrint.
If Me.Units_on_Hand <= Me. ReorderLevel then
Me.Units_to_Order.Visible=True
EndIf
EndSub
The wrong numbers become visible and I get no error. I am really baffled. Any suggestions would be greatly appreciated.
If Me.Units_on_Hand <= Me. ReorderLevel then
Me.Units_to_Order.Visible=True
EndIf
EndSub
The wrong numbers become visible and I get no error. I am really baffled. Any suggestions would be greatly appreciated.