Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
Query of Query?
DreamCoder
I was wondering if anyone knew a way to do a query of a result set? For example, I have a dataset called DS_agentTotals, and I want to run a query against the result set it produces, kinda like this:
SELECT
agent_name,
SUM(calls) AS total_calls
FROM DS_agentTotals
GROUP BY agent_name
Is this possible? Is there a possible workaround or different way of approaching it? Any ideas would be great!
Thanks,
Amanda
Find more posts tagged with
Comments
mwilliams
Hi Amanda,
You can put a table in your report linked to your dataSet, group it on agent_name, and add an aggregation that sums the calls over the group to the group footer. This should do what you're wanting. Let me know if you have questions.
DreamCoder
Michael,
As usual you are awesome. That sounds like it may work. I will give it a try. Thank you so very much.
Amanda
mwilliams
Amanda,
No problem! Glad to help. Let me know if you have issues!