Jan 24, 2020 08:35 AM
I want to use a formula to add the Collaborations initials to the Event name so I know who is going just by looking at the primary field name in the calendar view but I am unclear how to accomplish this.
Apr 16, 2020 08:37 AM
Try out the MID function for the second initial in Name (example: “Eric Koston”):
LEFT(Name,1) & MID(Name,FIND(" ",Name)+1,1)
Returns: “EK”