Free Trial

Alteryx Designer Desktop Discussions

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

Parse error at char(0): Empty expression

Vignesh_07
6 - Meteoroid

Hi,

 

I'm using a Dynamic formula updater macro inside my Alteryx WF.  For some reason i'm getting the below error on the Dynamic Formula updater Macro step.

 

Error: Dynamic Formula Updater (1) (161): Record #43: Tool #5: Parse Error at char(0): Empty expression

 

I have attached all my input files(I replaced one qvx input with an excel file because of memory) .  Please advise on how to resolve this issue. Also i have been able to see the output file but due to the error, the output email is not being sent.

 

Please advise

 

Thank you

 

Vignesh_07_0-1670564885264.png

 

 

 

7 REPLIES 7
PanPP
Alteryx Alumni (Retired)

Hi @Vignesh_07 

 

This error could mean one of your referenced fields is stored as a string. Based on "char(0)", I'd guess it's the first one. You'll need to change the field to a numeric data type (like with a select tool) or temporarily change it to a number in your expression with ToNumber([field]). 

 

Can you provide the tool that errored out?

What was the expression used in tool 5?

 

Vignesh_07
6 - Meteoroid

Hi 

 

I have already shared the macro tool and the alteryx WF.. All my fields are strings. I don't know what could be the problem. Could you please take a look at the WF and macro shared. Thank you

PanPP
Alteryx Alumni (Retired)

Hi @Vignesh_07 

 

The current filter has a = sign, and the cat column is a string value so the filter wouldn't work properly.

 

Can you change the filter to the following expression to see if it resolves the issue? 

 

length(([CAT #])) in (5)

 



Vignesh_07
6 - Meteoroid

I have attached the Workflow as a package

Vignesh_07
6 - Meteoroid

I just used the same expression but it still shows the same error- 

Error: Dynamic Formula Updater (1) (161): Record #43: Tool #17: Parse Error at char(0): Empty expression (Expression #1).

 

But now it shows error at Tool#17 which is a formula tool inside the Macro- do we have to make changes to that as well?

 

Vignesh_07_0-1670575632831.png

 

 

 

PanPP
Alteryx Alumni (Retired)

Hi @Vignesh_07 

 

I believe the issue is occurring because something changed in the metadata, and the field/ column [variable_name] is no longer available, i.e.: the variable being used to create a formula is missing or has not yet been created

 

This article explains this error message in further detail.

 

 

Vignesh_07
6 - Meteoroid

Thank you for the help. But still there's no luck on resolving this issue.

Labels
Top Solution Authors