Save the date! Join us on October 16 for our Product Ops launch event. Register here.
Mar 17, 2023 03:22 PM
If you look at my attached images below, I'm struggling with the CONCATENATE function. I want to add the COMPANY as a prefix to each of the multiple items listed in the PRODUCTS column, but concatenate only adds it as prefix to the first item.
I am doing this so that it will reference a price list. We offer the same products to each company, but each company has a different set of prices.
I was going to figure out how to automate the copy/paste from PRICE CODE to PRICE, but I couldn't even figure out how to get the price code in the correct format. Thanks in advance for any help!
Solved! Go to Solution.
Mar 18, 2023 12:57 AM
Try using `SUBSTITUTE()` instead:
{Company} & " " &
SUBSTITUTE(
{Products},
", ",
"," & {Company} & " "
)
Mar 18, 2023 12:57 AM
Try using `SUBSTITUTE()` instead:
{Company} & " " &
SUBSTITUTE(
{Products},
", ",
"," & {Company} & " "
)
Mar 20, 2023 07:16 AM
Ahhh thank you so much! This had me pulling out my hair. Really appreciate it!!! It worked like a charm.
Mar 29, 2023 11:01 AM
I thought I would be able to figure out how to automate the copy/paste from "Price Code" to "Price" column, but I am struggling. Would you have any advice in that regard? Thanks!
Mar 29, 2023 07:56 PM
Yeap sure, I've replied to your other post