Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a chart showing support minutes per event size. The expression column header also has a total, and I want to provide the percentage of the total related to each entry. I haven't been able to get this to work, and I would appreciate any suggestions from this group.
For example, my data chart looks like this:
| Event Size | Support Minutes |
|---|---|
| Small | 1000 |
| Medium | 3000 |
| Large | 2000 |
The Support Minutes header totals 6000. I want to create an additional column that shows 16.6%, 50%, and 33.3% respectively.
Here are the issues I have encountered:
Here's what I have tried:
An additional issue with my variable is that it does not change with additional selections. For example, right now it totals the entire data set. If I want to select a specific month, week, location, etc, I would want the sum to follow.
What do I need to do to get a percentage column which shows the value in the Support Minutes column divided by the total of that column, while at the same time maintaining the number format (mm)? Thanks in advance.
May be try this
Sum({$<Type={'Webcasts'}>}Duration)/Sum(TOTAL {$<Type={'Webcasts'}>}Duration)
May be try this
Sum({$<Type={'Webcasts'}>}Duration)/Sum(TOTAL {$<Type={'Webcasts'}>}Duration)
I knew it had to be easy. That worked perfectly Thank you.