Hello All,
Title is a little confusing. Need to add a character to an auto number with an If statement.
The scenario I am working with is, we have requests coming in through three channels, Emails, Cycle Counts and Recounts. These are identified by who is requesting them. ie MDiGregorio is a cycle count(C). I need to have the txtAuto(Auto number) entered into txtCaseNumber and add the corresponding letter(C,E or R).

Thank you
Title is a little confusing. Need to add a character to an auto number with an If statement.
The scenario I am working with is, we have requests coming in through three channels, Emails, Cycle Counts and Recounts. These are identified by who is requesting them. ie MDiGregorio is a cycle count(C). I need to have the txtAuto(Auto number) entered into txtCaseNumber and add the corresponding letter(C,E or R).
Code:
DoCmd.OpenQuery qryDuplicateRequest, acViewNormal, acReadOnly
If (Forms!frmRequest!txtRequester = "MDiGregorio") Then
tblRequest!Issue Case Number = tblRequest!AutoNumber & "C"
End If

Thank you