Have a field with the following value...
ACURA LEGEND
I want to remove ACURA and the space before the word LEGEND so the formula returns only LEGEND.
I know how to get just ACURA...
if {Inventory.Model} startsWith 'ACURA' then left ({Inventory.Model},6) else {Inventory.Model}
but can't figure out who to get just the LEGEND.
ACURA LEGEND
I want to remove ACURA and the space before the word LEGEND so the formula returns only LEGEND.
I know how to get just ACURA...
if {Inventory.Model} startsWith 'ACURA' then left ({Inventory.Model},6) else {Inventory.Model}
but can't figure out who to get just the LEGEND.