Good morning all! I am trying to update a recordset with the values chosen from a list box, it works slick, UNTIL Access runs across a null value in one of the columns, I'm trying to handle it with an IIF statement right now, to no avail, and I've tried using the NZ function with no luck.
How can I handle this? Thank you in advance!Code:rst!price = IIf([Forms]![Orders]![BuildItFloor].[Form]!LSTBUILDABLE.Column(5) > 0, [Forms]![Orders]![BuildItFloor].[Form]!LSTBUILDABLE.Column(5), 0)