Help

The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.

Description column if formula?

Topic Labels: Formulas
Solved
Jump to Solution
1316 3
cancel
Showing results for 
Search instead for 
Did you mean: 
Melissa1
6 - Interface Innovator
6 - Interface Innovator

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
Capture d’écran 2022-05-17 à 16.58.23

Thank you
Mélissa

1 Solution

Accepted Solutions
TheTimeSavingCo
18 - Pluto
18 - Pluto

Hi Melissa, try this:

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

See Solution in Thread

3 Replies 3
TheTimeSavingCo
18 - Pluto
18 - Pluto

Hi Melissa, try this:

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

Thank you very much Adam :star_struck: