Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
James Yeang
 
Posts: n/a
Default Please help: Pivot Tables problem

Hi, calling out anyone who can help with pivot tables

Here's my scenario:
3 people are asked a few questions, where their responses can be
grouped as "Yes" or "No".

I need to be able to count the number of Yes and No responses to Q1,
Q2, Q3 in a pivot table and then be able to Zoom in by user...

eg. This is the sample data collected

Q1 Q2 Q3
Jimmy Yes No Yes
Jack No Yes Yes
Jill Yes No Yes

and this is how I want to pivot table to look like....

Page: Username (eg. All users)

Q1 Q2 Q3
Yes 2 1 3
No 1 2 0

Try as I may, I cannot get it to appear that way. Can anyone please
help me with the layout, or tell me what I need to be selecting?

  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Please help: Pivot Tables problem

I don't think I'd use a pivottable.

I'd just use a few formula:

Q1 Q2
Yes =countif(sheet1!b:b,a2) =countif(sheet1!c:c,a2) ....
No =countif(sheet1!b:b,a3) =countif(sheet1!c:c,a3) ....

Change the sheet name and column addresses accordingly.

James Yeang wrote:

Hi, calling out anyone who can help with pivot tables

Here's my scenario:
3 people are asked a few questions, where their responses can be
grouped as "Yes" or "No".

I need to be able to count the number of Yes and No responses to Q1,
Q2, Q3 in a pivot table and then be able to Zoom in by user...

eg. This is the sample data collected

Q1 Q2 Q3
Jimmy Yes No Yes
Jack No Yes Yes
Jill Yes No Yes

and this is how I want to pivot table to look like....

Page: Username (eg. All users)

Q1 Q2 Q3
Yes 2 1 3
No 1 2 0

Try as I may, I cannot get it to appear that way. Can anyone please
help me with the layout, or tell me what I need to be selecting?


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
Jim May
 
Posts: n/a
Default Please help: Pivot Tables problem

Dave:
Is a Pivot Table even possible?
I made a couple attempts at creating, but all failed..
Tks,
Jim May


"Dave Peterson" wrote:

I don't think I'd use a pivottable.

I'd just use a few formula:

Q1 Q2
Yes =countif(sheet1!b:b,a2) =countif(sheet1!c:c,a2) ....
No =countif(sheet1!b:b,a3) =countif(sheet1!c:c,a3) ....

Change the sheet name and column addresses accordingly.

James Yeang wrote:

Hi, calling out anyone who can help with pivot tables

Here's my scenario:
3 people are asked a few questions, where their responses can be
grouped as "Yes" or "No".

I need to be able to count the number of Yes and No responses to Q1,
Q2, Q3 in a pivot table and then be able to Zoom in by user...

eg. This is the sample data collected

Q1 Q2 Q3
Jimmy Yes No Yes
Jack No Yes Yes
Jill Yes No Yes

and this is how I want to pivot table to look like....

Page: Username (eg. All users)

Q1 Q2 Q3
Yes 2 1 3
No 1 2 0

Try as I may, I cannot get it to appear that way. Can anyone please
help me with the layout, or tell me what I need to be selecting?


--

Dave Peterson

  #4   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Please help: Pivot Tables problem

I think you'd have to change your data (maybe use 1 for yes and 0 for know).
Then you could count/sum what you want.

But I don't think you'll get what you want.

It would be a lot easier if the data were laid out like:

Name Question Resp
Jimmy Q1 Yes (or 1)
Jimmy Q2 No (or 0)
.....


Jim May wrote:

Dave:
Is a Pivot Table even possible?
I made a couple attempts at creating, but all failed..
Tks,
Jim May

"Dave Peterson" wrote:

I don't think I'd use a pivottable.

I'd just use a few formula:

Q1 Q2
Yes =countif(sheet1!b:b,a2) =countif(sheet1!c:c,a2) ....
No =countif(sheet1!b:b,a3) =countif(sheet1!c:c,a3) ....

Change the sheet name and column addresses accordingly.

James Yeang wrote:

Hi, calling out anyone who can help with pivot tables

Here's my scenario:
3 people are asked a few questions, where their responses can be
grouped as "Yes" or "No".

I need to be able to count the number of Yes and No responses to Q1,
Q2, Q3 in a pivot table and then be able to Zoom in by user...

eg. This is the sample data collected

Q1 Q2 Q3
Jimmy Yes No Yes
Jack No Yes Yes
Jill Yes No Yes

and this is how I want to pivot table to look like....

Page: Username (eg. All users)

Q1 Q2 Q3
Yes 2 1 3
No 1 2 0

Try as I may, I cannot get it to appear that way. Can anyone please
help me with the layout, or tell me what I need to be selecting?


--

Dave Peterson


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
Jim May
 
Posts: n/a
Default Please help: Pivot Tables problem

Thanks for the additional input;
Jim

"Dave Peterson" wrote:

I think you'd have to change your data (maybe use 1 for yes and 0 for know).
Then you could count/sum what you want.

But I don't think you'll get what you want.

It would be a lot easier if the data were laid out like:

Name Question Resp
Jimmy Q1 Yes (or 1)
Jimmy Q2 No (or 0)
.....


Jim May wrote:

Dave:
Is a Pivot Table even possible?
I made a couple attempts at creating, but all failed..
Tks,
Jim May

"Dave Peterson" wrote:

I don't think I'd use a pivottable.

I'd just use a few formula:

Q1 Q2
Yes =countif(sheet1!b:b,a2) =countif(sheet1!c:c,a2) ....
No =countif(sheet1!b:b,a3) =countif(sheet1!c:c,a3) ....

Change the sheet name and column addresses accordingly.

James Yeang wrote:

Hi, calling out anyone who can help with pivot tables

Here's my scenario:
3 people are asked a few questions, where their responses can be
grouped as "Yes" or "No".

I need to be able to count the number of Yes and No responses to Q1,
Q2, Q3 in a pivot table and then be able to Zoom in by user...

eg. This is the sample data collected

Q1 Q2 Q3
Jimmy Yes No Yes
Jack No Yes Yes
Jill Yes No Yes

and this is how I want to pivot table to look like....

Page: Username (eg. All users)

Q1 Q2 Q3
Yes 2 1 3
No 1 2 0

Try as I may, I cannot get it to appear that way. Can anyone please
help me with the layout, or tell me what I need to be selecting?

--

Dave Peterson


--

Dave Peterson



  #6   Report Post  
Posted to microsoft.public.excel.misc
Friedbeef
 
Posts: n/a
Default Please help: Pivot Tables problem

Thanks guys...

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Pivot tables Gus Excel Discussion (Misc queries) 1 August 31st 05 08:31 PM
Pivot Tables dipsy Excel Worksheet Functions 0 August 12th 05 03:43 PM
Pivot Tables & not printing blank rows (revisited) [email protected] Excel Discussion (Misc queries) 1 August 4th 05 07:42 AM
Pivot Tables & not printing blank rows (revisited) [email protected] Excel Worksheet Functions 1 August 4th 05 07:42 AM
Pivot Tables Big Red Excel Discussion (Misc queries) 3 January 26th 05 08:38 PM


All times are GMT +1. The time now is 12:22 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"