Forum Discussion
Alphawolf1
Apr 25, 2019Copper Contributor
joining seperate formula into 1 cell
Hi all I have 3 separate formula's that work individually and wish to join them into 1 cell. how is this done correctly? these are the 3 separate formula: =IF(F15=0,0,IF(F15=1,0.1,IF(F15<=15,-0.002...
- Apr 25, 2019
That could be like
=IF(F15=1, 0.1, IF(F15>300, 0.0589*(F15)^0.5897, IF(F15 > 15, 0.2337*(F15)^0.345, -0.0027*(F15)^2+0.0719*(F15)+0.1098)))* (F15<>0)
SergeiBaklan
Apr 25, 2019Diamond Contributor
That could be like
=IF(F15=1, 0.1, IF(F15>300, 0.0589*(F15)^0.5897, IF(F15 > 15, 0.2337*(F15)^0.345, -0.0027*(F15)^2+0.0719*(F15)+0.1098)))* (F15<>0)
Alphawolf1
Apr 25, 2019Copper Contributor
- SergeiBaklanApr 25, 2019Diamond Contributor
Alphawolf1 , you are welcome