- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Calculating a percentage from two different visualizations
I am trying to figure out the best way to calculate the winshare from these two tables, meaning finding the percentage of the numbers on the right compared to the numbers on the right. For example, looking at the total, I have the winshare would be (80/327)*100 = 24.64%.
I would like to this for each account name. Now there may be some account names that are in the left figure but not on the right figure. It is because the bids were not realized.
The fields that I have for the table on the left are: Account Name (bid) and Opportunity Name (bid) - which I did a count of
The fields that I have for the table on the right are: Account Name (realized) and Opportunity Name (realized) - which I did a count of
Any suggestions would be greatly appreciated! Thanks!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @Rsanjuan,
In your scenario, you can create a measure with DIVIDE() function like below:
Measure = DIVIDE(SUM(realized[Count of Opportunity Name (realized)]),SUM(bid[Count of Opportunity Name (bid)]))
Then format the measure values as Percentage.
If you have any question, please feel free to ask.
Best Regards,
Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @Rsanjuan,
In your scenario, you can create a measure with DIVIDE() function like below:
Measure = DIVIDE(SUM(realized[Count of Opportunity Name (realized)]),SUM(bid[Count of Opportunity Name (bid)]))
Then format the measure values as Percentage.
If you have any question, please feel free to ask.
Best Regards,
Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you!

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
11-21-2024 02:41 AM | |||
10-24-2024 03:14 AM | |||
11-26-2024 12:57 AM | |||
10-12-2024 12:45 PM | |||
10-24-2024 03:49 PM |
User | Count |
---|---|
141 | |
115 | |
84 | |
63 | |
48 |