Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I want to trim from right side Month and Year and keep the all the words except month and year in a new field.
Plan for the Month Apr-2015
New field= Plan for the Month
MonthYear= Apr-2015.
Regards,
Mohammad
LEFT('Plan for the Month Apr-2015',LEN('Plan for the Month Apr-2015')-9)
and for month year use Peter suggestion
Have you tried ordinary string-functions already?
RIGHT(YourFieldName, 😎 AS MonthYear
HTH Peter
LEFT('Plan for the Month Apr-2015',LEN('Plan for the Month Apr-2015')-9)
and for month year use Peter suggestion
Thank You...........Robert...........