a win-lose situation

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

i have a pivot table where i display who won a wrestling match along with
when and where.

the problem is, i want two things that i'm not sure are possible:

1) in the totals and subtotals, i would like to have them display the number
of times my data says "won" or "1" then a "/" and the number of times my data
says "lost" or "0".

i also have a "won by fall" column that features a "1" or a "0", indicating
whether they won by fall or not, but i also have a "forfeight" in some.

2) i need it to return the word "forfeight" in the cell corresponding to
that in the pivot table, but not count it in the totals and subtotals.

thanks much,
stephen
 
Hi
1. Try a formujla solution
=SUM(COUNTIF(A1:A100,{"won","1"})) & " / " &
SUM(COUNTIF(A1:A100,{"lost","0"}))

2. Not really sure what you're trying to do
 
well how do get that into my pivot table?

Frank Kabel said:
Hi
1. Try a formujla solution
=SUM(COUNTIF(A1:A100,{"won","1"})) & " / " &
SUM(COUNTIF(A1:A100,{"lost","0"}))

2. Not really sure what you're trying to do
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top