There is a field for first name and a field for last name. When the first name ends in an "s", the name should be displayed without an additional "s" after the apostrophe. How would I code this please?
When Owner's first name ends in an
Collapse
X
-
That should actually be
if the first name is in an object on the screen or report.Code:Me.FirstName = Me.Firstname & "'s" Me.FirstName = Replace(Me.FirstName,"s's","s'")
DZDS, are you performing this in a query or a form or a report, or some other place? With a little more information we could help you more precisely. If this is enough information, please let us know.
JimComment
Comment