Jun 23, 2021 12:30 AM
A base used to inventory products.
Current relevant columns are:
These products are categorized
Categories in this Column include:
The Description Column is a formula that creates a meaning full sentenced based product description on the columns. So currently I have:
{Product Category} & " " &
“of” & " " &
{Product Name}
& " " &
“printed on a”
& " " &
{Size}
& " " &
{Substrate}
In this example it will output:
Picture of Glacier printed on a 16 x 20 hardboard gatorfoam
What I need is an IF statement in which if the product category is “Painting” the output will have the words “Printed On” as shown above otherwise this word is not shown
ALSO if Product Category is “Painting” then the output will have the words “of” as shown above… otherwise this word is not shown.
Jun 23, 2021 05:32 PM
{Product Category} & " " &
IF(
{Product Category} = "Painting",
"of " & {Product Name} & " printed on",
{Product Name}
) & " a " & {Size} & " " & {Substrate}
Jun 24, 2021 10:02 AM
THANK YOU SO MUCH, this works perfect.