Alteryx Designer Desktop Discussions

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

Solving "Null"

KamenRider
10 - Fireball

HI,

 

Would like to ask for your help on how I can fix the "NULL" results. Got an error that states, "Parse Error at char(33): Unmatched (Expression #1).

 

null2.PNG

 

The current data type for Maturity (years) is Doble and for Weighted+ is Fixed  Decimal (9.6). Not sure if they are compatible or not which seems the cause of the error.

 

NULL.PNG

Please help on how I can resolve this.

 

Thanks,

Kamen

3 REPLIES 3
alexnajm
16 - Nebula
16 - Nebula

You are missing a closing parenthesis after [Weighted+]!

alexnajm
16 - Nebula
16 - Nebula

([Maturity  (years)])*([Weighted+])

AGilbert
9 - Comet

You have an unclosed parenthesis around [weighted+] causing the problem. Also, you don't need any of the parenthesis in expression 1. "[Maturity (years)] * [Weighted+]" would evaluate the same as "({Maturity (years)]) * ([Weighted+])".

Labels