Compliation failed or was lost

Dear all,
There is an error below at the beginning of dubuging the file.
Is there a method to solve it?
image

image
Thanks and regards,

@jackie.yue

Is this hppening for a bee project as well?

If not then it might be because of some qctivity you are using…and it might be having a character or string which is not to be used

One such activity is text to columns activity and should not be used with \

Cheers

As often is the case, reading the error here can help you out.

It states that an expression cannot be the target of an assignment, indicating you have an invalid assignment activity.

What it refers to is that the target (the value on the left side) cannot be an expression.
So a valid one could be foo = "Test" where foo is the variable and “Test” is an expression.
You cannot do "Test" = foo as you cannot change the value of an expression.
Its like trying to write 2 + 2 = foo aswell, its not possible to make 2 + 2 equal something different because its an expression, so you cannot assign 2 + 2 to any other value.

You need to track down where you have made this mistake.