L
Lonewolf
I have a very simple DB where I track items. I have an ID, Description,
Intake #, Sold #, Remaining # (this is from subtracting the sold from the
intake), and a total inventory (this is calculated using Dsum on remaining
inventory based on description matches).
I have a report that I wish will show all records that have a remaining
balance, and just exclude the ones that have a zero balance.
I tried:
Private Sub Report_Load()
If Remaining.Value <= 0 Then
ID.Visible = False
Description.Visible = False
Intake.Visible = False
Sold.Visible = False
Remaining.Visible = False
Total_Inventory.Visible = False
End If
End Sub
But it does not work.. Please help!!!
Intake #, Sold #, Remaining # (this is from subtracting the sold from the
intake), and a total inventory (this is calculated using Dsum on remaining
inventory based on description matches).
I have a report that I wish will show all records that have a remaining
balance, and just exclude the ones that have a zero balance.
I tried:
Private Sub Report_Load()
If Remaining.Value <= 0 Then
ID.Visible = False
Description.Visible = False
Intake.Visible = False
Sold.Visible = False
Remaining.Visible = False
Total_Inventory.Visible = False
End If
End Sub
But it does not work.. Please help!!!