Skip to main content
Solved

If blank formula

  • November 20, 2021
  • 2 replies
  • 22 views

Forum|alt.badge.img+5

Hi community,
I need your help.

I have a concatened formula who find 2 result on 2 colums + text
I just want to add this condition : if you have 1 or 2 result missing, display a bank field.

This is the formula :
CONCATENATE("Diamètre : “,{Diamètre},” cm / ",“Hauteur : “,Hauteur,” cm”)

The 2 column : “Diamètre” and “Hauteur”

Thank’s for your help

Matthieu

Best answer by Kamille_Parks11

IF(
   AND({Diamètre}, {Hauteur}),
   CONCATENATE("Diamètre : ", {Diamètre}, " cm / ", "Hauteur : ", {Hauteur}, " cm")
)

2 replies

Kamille_Parks11
Forum|alt.badge.img+27
IF(
   AND({Diamètre}, {Hauteur}),
   CONCATENATE("Diamètre : ", {Diamètre}, " cm / ", "Hauteur : ", {Hauteur}, " cm")
)

Forum|alt.badge.img+5

thanks a lot Kamille