Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
mwscott1
Creator
Creator

Total 3 Columns

I have two tables both joined by column REF Number. I need to know how to total the other three columns

Table 1

REF NumberCandidate Submitted
R00011

Table 2

REF NumberInterview ScheduledCandidate Appointed
R00015
R000110

Candidate Submitted + Interview Scheduled + Candidate Appointed = 16

1 Solution

Accepted Solutions
sunny_talwar

May be use RangeSum() function

RangeSum(Sum([Candidate Submitted]), Sum([Interview Scheduled]), Sum([Candidate Appointed]))

View solution in original post

3 Replies
sunny_talwar

May be use RangeSum() function

RangeSum(Sum([Candidate Submitted]), Sum([Interview Scheduled]), Sum([Candidate Appointed]))

mwscott1
Creator
Creator
Author

Is it possible to include this in the load so that it loads a "Total"

sunny_talwar

In the load you can do this:

RangeSum([Candidate Submitted], [Interview Scheduled], [Candidate Appointed]) as SumOfThreeFields