Please help...
Table: tblRMALog
Form: frmRMALog
Field: dtmDateNotified (default =Date$())
autRMA# (autRMA#-not displayed on form)
txtRMA#
My issue is i can not have an incremental number. But I need an auto generated number. I have the control source for txtRMA# in the form as
="C" & Format([dtmDateNotified],"yymmdd") & "-" & Right([autRMA#],1)
So the far right number is auto and only ranges from 0-9. This way the customer doesnt know how many Returns we have issued (just so you can understand the need for not having an incremental number).
This works in the form great!!! But that field is not saved in tblRMALog. I have tried to move the expression to the form's txtRMA# Default value, but then the autonumber section does not display or get put into the table. I tried to have the expression in the table, to just mimic the form, but i have yet to make that work.
Please HELP!!
Table: tblRMALog
Form: frmRMALog
Field: dtmDateNotified (default =Date$())
autRMA# (autRMA#-not displayed on form)
txtRMA#
My issue is i can not have an incremental number. But I need an auto generated number. I have the control source for txtRMA# in the form as
="C" & Format([dtmDateNotified],"yymmdd") & "-" & Right([autRMA#],1)
So the far right number is auto and only ranges from 0-9. This way the customer doesnt know how many Returns we have issued (just so you can understand the need for not having an incremental number).
This works in the form great!!! But that field is not saved in tblRMALog. I have tried to move the expression to the form's txtRMA# Default value, but then the autonumber section does not display or get put into the table. I tried to have the expression in the table, to just mimic the form, but i have yet to make that work.
Please HELP!!