Skip to main content
Solved

Description column if formula?

  • May 17, 2022
  • 3 replies
  • 37 views

Forum|alt.badge.img+5

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

Best answer by TheTimeSavingCo

Hi Melissa, try this:

IF(
  {(hide) Langue} = "EN",
  {Description produit EN},
  {Description produit FR}
)

3 replies

TheTimeSavingCo
Forum|alt.badge.img+31

Hi Melissa, try this:

IF(
  {(hide) Langue} = "EN",
  {Description produit EN},
  {Description produit FR}
)

Forum|alt.badge.img+5
  • Author
  • Inspiring
  • May 17, 2022

Hi Melissa, try this:

IF(
  {(hide) Langue} = "EN",
  {Description produit EN},
  {Description produit FR}
)

Thank you very much Adam :star_struck:


TheTimeSavingCo
Forum|alt.badge.img+31

Thank you very much Adam :star_struck:


No worries! Glad I Could help!