I have a report that prints the contents of an order. This is the 2 pieces of code I have. I have tested them individually and they work but I do not know if it is possible to combine them.
>>First
If Me.pick_qty < qty_ord Then
Me.Box.BackColor = 16777215
Else
Me.Box.BackColor = 255
End If
>>Second
If Me.pick_status = "P" Then
Me.Box.BackColor = 16777215
Else
Me.Box.BackColor = 52479
End If
Any help I can get merging this 2 into one.
Thanks
Ricardo
>>First
If Me.pick_qty < qty_ord Then
Me.Box.BackColor = 16777215
Else
Me.Box.BackColor = 255
End If
>>Second
If Me.pick_status = "P" Then
Me.Box.BackColor = 16777215
Else
Me.Box.BackColor = 52479
End If
Any help I can get merging this 2 into one.
Thanks
Ricardo