Hi all,
I'm updating fall pay dates which is half of the award total. I'm also entering a date. This is all going into the same table.
However, I'm getting '0' in the table for everything when performing the following query. The data types are right also.
Any ideas?
Code:
strSql = " UPDATE Award SET Award.Amount_FallPay = Award.AWARD_Total/2," & _
" Award.AWRD_AMOUNT_FallPayDate = #" & Me.txtFallPaymentDate & " #" & _
" WHERE Award.AWARD_Ready = True and AWARD_Season ='Fall'"
CurrentDb.Execute strSql