Sum Values based on duplicate unique values in another column
Afternoon all,
Having a hard time figuring out this one out. I have a tabular report i'm connecting to in salesforce, which is a "Campaigns with Influenced Opportunities" report. The report shows a line item for all campaigns that contain a member with an opportunity. The member can be associated to 1 opportunity, but be a member of 3 campaigns, which means that opportunity is listed in 3 line items (Member A, Opportunity 1, Campaign Alpha,beta,zeta)... The opportunity ID is unique, so for every line item with the same opportunity ID i'd like to return the opportunity Amount only once (instead of 3 times).
my answer should be:
Opportunity Total = Sum(Unique ID("Opportunity Amount")) / Sum(Count of that ID(("Opportunity ID"))
however, it must be done at the individual oppty level. If you sum all the oppty amount, then divide by count of ID's, it's wrong because each opportunity can be a different amount. and the right amount needs to be divided by the right count.
Example:
4000 = (Sum of amount for Oppty ID for John / Count of Oppty ID for John) + (Sum of amount for oppty id for jane / count of oppty id for Jane) + etc. etc. etc.
Member | Campaign | Oppty ID | Amount | Actual |
John | Camp1 | 123a | $1,000.00 | $1,000.00 |
John | Camp2 | 123a | $1,000.00 | |
Jane | Camp3 | 74k1 | $1,000.00 | $1,000.00 |
Josie | Camp4 | 84kd | $1,000.00 | $1,000.00 |
Sam | Camp5 | 923j | $1,000.00 | $1,000.00 |
Total | $5,000.00 | $4,000.00 |
Hope this makes sense, any help is appreciated, thank you!
Comments
-
added note, when I create my bar graph as a stack with the unique opportunity ID as a series across created dates for the quarter, then the correct totals per date range will be there.
0 -
For ease of use, I would restructure the data
Such that I have
data1 = one row per campaign.
data2 = one row per opportunity
then APPEND them instead of JOIN them. By JOIN'ing the data you are currently spreading Opportunity Amount across each associated campaign (hence why you're trying to do 'crazy math'. If you APPEND the data, then you don't have to worry about crazy math and can instead take easy sum or division.
In this video https://www.youtube.com/watch?v=I3y-LSch-hM&list=PLUy_qbtzH0S4CkHBUvpOVpLNJluk6upOn&index=2&t=5s I describe how to build a STACK'ed dataset (my name for datasets that have been UNIONed.) Instead of forecasts and actuals, you'd just append opptys and campaigns.
Jae Wilson
Check out my 🎥 Domo Training YouTube Channel 👨💻
**Say "Thanks" by clicking the ❤️ in the post that helped you.
**Please mark the post that solves your problem by clicking on "Accept as Solution"0 -
I'm trying to do this same thing. I understand the append row and how it helps not blow up the data, but don't understand how that would help in this case.
You would then have:
Oppty ID
Stage
Pipeline $
Campaign
Influence
123a
Discover
$1,000
123a
Camp1
100%
74k1
Negotiation
$1,000
74k1
Camp2
50%
923j
Won
$10,000
923j
Camp3
100%
So now when I try to build a report that looks at the pipeline$ (or any $ Amounts) associated to the influenced campaign, it would show $0.
0 -
From your original data table, you could try something like this:
sum(sum(DISTINCT
Amount
) fixed (byMember
,OpptyID
))that gives me this
“There is a superhero in all of us, we just need the courage to put on the cape.” -Superman1 -
I guess it all depends on whether you consider the value of an opp being spread evenly between the campaigns or not. What would do, is in ETL create a calculated field to spread the Opp amount, so that distribution will not be affected by any filters at the view level.
I'd add a Group By tile, to perform a Count of Campaings per Opportunity, join this back and then do Formula tile to have
Distributed Amount
be equal the the Amount/Count.If the spread is not even, they you'd need to know how you determine how to spread it, either by campaign weight, participation % or anything along that line and do a weighted distribution instead.
0
Categories
- All Categories
- 1.8K Product Ideas
- 1.8K Ideas Exchange
- 1.5K Connect
- 1.2K Connectors
- 300 Workbench
- 6 Cloud Amplifier
- 8 Federated
- 2.9K Transform
- 100 SQL DataFlows
- 616 Datasets
- 2.2K Magic ETL
- 3.9K Visualize
- 2.5K Charting
- 738 Beast Mode
- 56 App Studio
- 40 Variables
- 685 Automate
- 176 Apps
- 452 APIs & Domo Developer
- 47 Workflows
- 10 DomoAI
- 36 Predict
- 15 Jupyter Workspaces
- 21 R & Python Tiles
- 394 Distribute
- 113 Domo Everywhere
- 275 Scheduled Reports
- 6 Software Integrations
- 123 Manage
- 120 Governance & Security
- 8 Domo Community Gallery
- 38 Product Releases
- 10 Domo University
- 5.4K Community Forums
- 40 Getting Started
- 30 Community Member Introductions
- 108 Community Announcements
- 4.8K Archive