Good morning,
I am trying to use a Public Function to determine the result of a field value in a query.
Select Case notetypeid
Case "1"
fsort = [ValuationProperty].Value
Case "2"
fsort = "Property"
Case Else
fsort = "ValProperty"
End Select
End Function
When I call this in the query I want to retrieve the Value of the field ValuationProperty
How can I do this?
I am trying to use a Public Function to determine the result of a field value in a query.
Select Case notetypeid
Case "1"
fsort = [ValuationProperty].Value
Case "2"
fsort = "Property"
Case Else
fsort = "ValProperty"
End Select
End Function
When I call this in the query I want to retrieve the Value of the field ValuationProperty
How can I do this?