Skip to main content
Solved

If blank formula


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")
)
View original
Did this topic help you find an answer to your question?

2 replies

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

Forum|alt.badge.img+5

thanks a lot Kamille


Reply