Rob,
If you store Bob in the FirstName field (length 40), Access only saves
Bob (not Bob and 37 spaces)
Use "concatenation" to put the Last/First name together in a calculated
text control field...
= [LastName] & ", " & [FirstName]
would yield
Smith, Bob