Forum Discussion
Formules et fonction avec champ de nom
- Dec 02, 2021
=IFERROR(IF(E8/(C8*D8)=Gravity,"gravity",IF(E8/(C8*D8)=Magnet,"magnet",IF(E8/(C8*D8)=Force,"force"))),"")
Maybe like this? I entered above formula in B8 and copied down to B20.
If you enter =C13*D13*Magnet in cell E13 along with values in cell C13 and D13 the formula returns "magnet" in B13.
I attributed named ranges Gravity, Magnet and Force for cells C5, D5 and E5.
OliverScheurich if this can help
- OliverScheurichDec 02, 2021Gold Contributor
=IFERROR(IF(E8/(C8*D8)=Gravity,"gravity",IF(E8/(C8*D8)=Magnet,"magnet",IF(E8/(C8*D8)=Force,"force"))),"")
Maybe like this? I entered above formula in B8 and copied down to B20.
If you enter =C13*D13*Magnet in cell E13 along with values in cell C13 and D13 the formula returns "magnet" in B13.
I attributed named ranges Gravity, Magnet and Force for cells C5, D5 and E5.
- oliviermouazeDec 02, 2021Copper ContributorThanks a lot