Jan 26, 2023 09:08 PM
Hi there,
I know how to get things off the end of a string but not the start!!!
I have recipes that look like this
Easy veggie, lentil and quinoa dahl with pita toasts (KIDS)
Greek salad with crispy chickpeas and potatoes
Miso eggplant with broccolini and edamame
TM Pan-fried salmon with creamy pumpkin millet
TM Moroccan spiced beef and lentils with carrot couscous
I want to create a field that has all the recipe names - but without the TM at the start.
TIA
Solved! Go to Solution.
Jan 26, 2023 09:21 PM
Assuming it's always going to be "TM", you could try:
IF(
LEFT(Name, 3) = "TM ",
REPLACE(Name, 0, 3, ""),
Name
)
Jan 26, 2023 09:21 PM
Assuming it's always going to be "TM", you could try:
IF(
LEFT(Name, 3) = "TM ",
REPLACE(Name, 0, 3, ""),
Name
)
Feb 07, 2023 12:38 AM
it worked!!