Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
evansabres
Specialist
Specialist

Change a Field

Hello -

I have a field called [Act Name} which appears as Home Team VS. Other Team

I want to only show VS. Other Team. Home Team is always the same number of characters, what is the best way to do this?

Thank you.

2 Replies
sunny_talwar

May be this:

'VS. ' & SubField([Act Name], 'VS.', 2) as FieldName

MarcoWedel

Mid([Act Name],11) as [Act Name]


regards


Marco