That's right, you can't use calculations in data statements.
Which you've already found out, so what's your question?
Beside, also:
[code:1:84cf10dcce]Data 10 + 10[/code:1:84cf10dcce]
won't work, so it's not a constant <-> data issue, the data statement is simply not intended to be used this way.
What works is:
[code:1:84cf10dcce]Const Test2 = Test + Test1
...
Data Test2, ...[/code:1:84cf10dcce]
↧