


I am getting this error when I open my form. All I'm trying to do is calculate the sum of a few fileds to a totals field. Any suggestions?
Solved! Go to Solution.
Views
Replies
Total Likes
It shoudl be Sum(Field1.rawvalue, Field2.rawValue etc....)
The easiest thing to do now is simply remove the word Sum as by adding all of thse fields you are doing a sum.
Paul
Views
Replies
Total Likes
The Sum function takes a series of fields - separated by commas - and adds them together. You have added + signs to separate your fields.
Paul
Views
Replies
Total Likes
This is what I have in the totals field which is field 14:
Sum(NumericField6.rawValue
+ NumericField10.rawValue + NumericField11.rawValue + NumericField12.rawValue + NumericField13.rawValue + NumericField14.rawValue);
Show: Calculate
Language: FormCalc
Run at: Client
I've tried to troubleshoot but nothing is working for me.
Views
Replies
Total Likes
It shoudl be Sum(Field1.rawvalue, Field2.rawValue etc....)
The easiest thing to do now is simply remove the word Sum as by adding all of thse fields you are doing a sum.
Paul
Views
Replies
Total Likes