Can someone please suggest me how can I use this formula on Alteryx?
IF(AND([useful life]<>39,[project start date]>DATE(2017,9,27)),100%,IF([useful life]<>39,30%,0%))
Solved! Go to Solution.
Hi @Inactive User
Formula would be
IF [useful life]!=39 and [project start date]>"2017-09-27" then "100%"
ElseIF [useful life]!=39 then "30%"
Else "0%"
Endif
Hope this helps : )
not working. 😞
@Inactive User
Sorry was missing a quote fixed it😅
IF [useful life]!=39 and [project start date]>"2017-09-27" then "100%"
ElseIF [useful life]!=39 then "30%"
Else "0%"
Endif
@atcodedog05 again faster with the reply haha ;-)....
Last formula is not working 😞
😞