Question 1167409
i got the answer, but it wasn't easy and i don't believe it lent itself to any specific formula very well.


this is what i got:


<pre>
                            daily times         daily graphic      daily punch

total                           70                    65                85
1 only                          40                    20                45
all 3                           15                    15                15
1 only + all 3                  55                    35                60
total - (1 only + all 3)        15                    30                25
</pre>


total - (1 only + all 3) means that each one of those is split between only 1 other, forming 2 only.


so the row with the title of total - (1 only + all 3) can be renamed to 2 only.


the table then looks like this:


<pre>
                            daily times         daily graphic      daily punch

total                           70                    65                85
1 only                          40                    20                45
all 3                           15                    15                15
1 only + all 3                  55                    35                60
2 only                          15                    30                25
</pre>


that 2 only row needs to be split into pairs rather than having entries in all 3 columns.


i had to play around with it until i got what looked like it should be:


the end result was:


<pre>
                            daily times         daily graphic      daily punch

total                           70                    65                85
1 only                          40                    20                45
all 3                           15                    15                15
1 only + all 3                  55                    35                60
---------------------------------------------------------------------------
daily times daily graphic       10                    10
daily times daily punch          5                                       5
daily graphic daily punch                             20                20
---------------------------------------------------------------------------
2 only                          15                    30                25
</pre>


the part between the dashed lines is the breakdown of the 2 only row.


your total is the data in the 1 only row and the 3 only row and the 2 only row.


that becomes:


<pre>
                            daily times         daily graphic      daily punch

1 only                          40                    20                45
all 3                           15                    15                15
2 only                          15                    30                25
total                           70                    65                85
</pre>


when you break the 2 only row down, then you get:


<pre>
                            daily times         daily graphic      daily punch

1 only                          40                    20                45
all 3                           15                    15                15
daily times daily graphic       10                    10
daily times daily punch          5                                       5
daily graphic daily punch                             20                20
total                           70                    65                85
</pre>


everything checks out.


your solution is that the number that applied to both daily times and daily graphic is 15 that applied to all three plus 10 that applied to daily times and daily graphic only.


therefore, your solution is that the number that applied to daily time and daily graphic is 25.