
Specialist
2017-08-10
01:36 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Calculation in Script
I have several fields, each with a numerical value
Likes
Shares
Comments
that i want to add together in my script to create a new field.
What is the structure of this in the script?
I tried SUM(Likes+Comments+Shares) AS field but would not function
321 Views
1 Solution
Accepted Solutions

MVP
2017-08-10
01:37 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
1 Reply

MVP
2017-08-10
01:37 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
May be like this
RangeSum(Likes, Comments, Shares) as Total
