Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Formula not Working

Inactive User
Not applicable

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%))

16 REPLIES 16
atcodedog05
22 - Nova
22 - Nova

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 : )

Inactive User
Not applicable

rrahat93_0-1628862783744.png

not working. 😞

atcodedog05
22 - Nova
22 - Nova

@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

Sebastiaandb
12 - Quasar

@Inactive User 

Sebastiaandb
12 - Quasar

@atcodedog05 again faster with the reply haha ;-)....

Inactive User
Not applicable

rrahat93_0-1628863093663.png

Last formula is not working 😞

atcodedog05
22 - Nova
22 - Nova

Hi @Inactive User 

 

It seems to work for me. Can show me whats the error you are getting.

 

Workflow:

atcodedog05_0-1628863305715.png

 

Hope this helps : )

atcodedog05
22 - Nova
22 - Nova

Hi @Sebastiaandb 

 

It looks like MakeDate() is not an Alteryx function can you check 😅

Inactive User
Not applicable

rrahat93_0-1628863497673.png

rrahat93_1-1628863507315.png

😞

Labels