Dec 31, 2022 05:50 AM
Hi there! I'm new to Airtable and trying to figure out how everything works. Let's say I have a cell that as the following information I inserted below:
Beef Onion Burgers with Pickles
Ingredients:
2 hamburger patties
1 onion, diced
2 tablespoons ketchup
4 slices pickles
2 hamburger buns
How can I separate all of the text to the left of the word "ingredients" into one cell? I basically am trying to extract the name of the recipe into its own cell.
Solved! Go to Solution.
Dec 31, 2022 06:28 AM
Try something like:
LEFT(
{Full Text},
FIND(
"Ingredients",
{Full Text}
) - 1
)
Which will give you this:
Dec 31, 2022 06:28 AM
Try something like:
LEFT(
{Full Text},
FIND(
"Ingredients",
{Full Text}
) - 1
)
Which will give you this:
Jan 01, 2023 02:36 AM
Hey! That worked! The only thing is I have some spaces before the text. Is there anyway to remove those spaces?
Jan 01, 2023 04:30 AM
Sure, to do that put the formula above inside a `TRIM()`