May 17, 2022 07:57 AM
Hello,
I am not a specialist in formulas and especially in IF formulas.
I have a description column and I would like it to be filled with the content of my product description column fr when language fr (single selection) is selected, same for EN
Thank you
Mélissa
Solved! Go to Solution.
May 17, 2022 08:29 AM
Hi Melissa, try this:
IF(
{(hide) Langue} = "EN",
{Description produit EN},
{Description produit FR}
)
May 17, 2022 08:29 AM
Hi Melissa, try this:
IF(
{(hide) Langue} = "EN",
{Description produit EN},
{Description produit FR}
)
May 17, 2022 12:53 PM
Thank you very much Adam :star_struck:
May 17, 2022 07:43 PM
No worries! Glad I Could help!