I have a text field Dwg_Id in a table which I'm trying to update to a number using:
Val(1000000*[tbl_LOOPGEN_shts]![SHT]) + [ tbl_LOOPGEN_shts]![Auto_No])
but it's not letting me do that. Please note SHT is also a text field and Auto_No is AutoNumber.
If I only update the field to:
Val(1000000*[tbl_LOOPGEN_shts]![SHT])
it works, but I'm not able to add the other field to it?? Any other ways of doing this?
Thanks
Val(1000000*[tbl_LOOPGEN_shts]![SHT]) + [ tbl_LOOPGEN_shts]![Auto_No])
but it's not letting me do that. Please note SHT is also a text field and Auto_No is AutoNumber.
If I only update the field to:
Val(1000000*[tbl_LOOPGEN_shts]![SHT])
it works, but I'm not able to add the other field to it?? Any other ways of doing this?
Thanks