I'm using Dynamic Content - Expression to summate two fields with distances in metres and convert to km and display the distances in Text widgets:
Text 1: SUM({Dist1})/1000
Text 2: SUM({Dist2})/1000
These two work OK.
I then try to add the two together:
Text 3: SUM({Dist1})/1000+SUM({Dist2}]/1000
This won't work - I just get the name I gave the expression, both on the build view and when I run it. I don't get the "invalid expression" message in the expression builder or any other errors. How can I add together the two summations?