question

P

Penny

I have a text box in a report pulling three fields. The
fields are (Last Name, First Name). I would like to be
able to show their initials only. How would I do this?
Below is my code


=[Capital Markets Originator] & "/" & [Capital Markets
Distributor] & "/" & [Capital Markets Jr Support]


Thanks in advance

Penny
 
F

Fons Ponsioen

If I understand correctly I think what you want is:
=Left([Last Name],1)&Left([First Name],1)
If you place this in a textbox make sure the texbox is not
named the same as a variable.
Hope this helps.
Fons
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top