Hi -- SOrry yes it's me again... i am creating a button where it will input the data into a text box - everything works EXCEPT Me.txtIssueCategories this field is from a table and when i look in access the "Row Source" is from an SQL statement- when the button is click Me.txtIssueCategories will only show up as a number that is associates to the description... i would like to have the description show up instead of a number...
Code:
If IsNull(Me.txtComments) Or Me.txtComments = vbNullString Then
Me.txtComments = Date & ": " & "Subject pervious adjudication = " & Me.Status & " on " & Me.[txtFINAL DATE] & " by Grantor: " & Clr_name & Me.txtIssueCategories
Else
Me.txtComments = Me.txtComments & vbNewLine & Date & ": " & "Subject pervious adjudication = " & Me.Status & " on " & Me.[txtFINAL DATE] & " by Grantor: " & Clr_name & Me.txtIssueCategories
End If