cancel
Showing results for 
Search instead for 
Did you mean: 

Not Equel

Former Member
0 Kudos

Hi Masters,

How can we use Not Equel.

My Scenario is :

Name of account not = spaces move ship to address.

Thanks!

Regards,

SReddy

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi;

You can use a UDF also in this case

there will be 2 inputs to the UDF

1st Name Of Account -


UDF ---Target

2nd ship to address

UDF

if(!(account.equals(" ")))

return shipadd;

Mudit

Former Member
0 Kudos

nameof_account(source) -


> equalS(second parameter Constant blank) -


>Not(Boolean function)--->ifWithoutElse(ship as second parameter) -


> address(target)

this implies

compare name of account with blank,use 'Not' to logically complenment the result, then use ifWithoutElse to evaluate result of this logical 'Not'. This can handle, if name of account is not blank then move ship to address

hope this helps

prabhu_s2
Active Contributor
0 Kudos

yes def u can use that