Forum Discussion
Anonymous
6 years agoNot applicable
Multiple Criteria IF Formula
Hi Experts How would you do the following. If PrimaryYearstoOUtcome is 5.0 then 5.0 if PrimaryYearstoOUtcome is 5.1 and we have a 5.0 (in data set as shown) then leave 5.1 as 5.1 if(STEMBRA...
amitchandak
6 years agoSuper User
If STEMBRANDYEARS[PRIMARYTOOUTCOMEYEARS] is number or can be compared as number , are you trying to round. Then you can try like this
if(STEMBRANDYEARS[STEMBRAND] = STEMBRANDYEARS[STEMBRAND] ,If((STEMBRANDYEARS[PRIMARYTOOUTCOMEYEARS] >0.0 && STEMBRANDYEARS[PRIMARYTOOUTCOMEYEARS]<1.0 ) || isblank(STEMBRANDYEARS[PRIMARYTOOUTCOMEYEARS])) ,0.0 , round(round(STEMBRANDYEARS[PRIMARYTOOUTCOMEYEARS],0),1))
Anonymous
6 years agoNot applicable
brillant thanks you,