Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
JPP JPP is offline
Member
 
Posts: 35
Post Seperating Information In an Excel Sheet

Ok, I have a report, which enables the user to copy and paste 100 report cards into a sheet, and that allow the main page to fill with information. The problem I am facing, is that in one section of the Report Card, there are MULTIPLE answers. I need to be able to "tally" how many times one issue was marked.

Example :
Section 1 is : Agent ID & Scope of Appointmen
There are 7 selections in this section.

QA Agents will then listen to a call, and mark the appropriate selection, if the Agent is non-compliant. I need to be able to "tally" everytime a selection is made, and display it on the master page. The 7 sections are :

1) Agent did not give their full name.
2) Agent did not state the company name.
3) Agent did not state they were licensed.
4) Agent did not give the scope.
5) Agent covered this section on one or more calls, but not all calls.
6) Agent skipped this section.
7) Other compliance issue.


Let's say the QA Rep chooses 1,4 & 7.
Qa Rep 2 choose 4, 7 & 2.

I need to be able to display on my master page that selection 1, was chosen once. Selection 2, was chosen once. And selection 7 was chosen twice.

If anyone can hepl,, if its even possible, I would apprciate it!!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,522
Default Seperating Information In an Excel Sheet

On Thursday, May 10, 2012 9:23:03 AM UTC-5, JPP wrote:
Ok, I have a report, which enables the user to copy and paste 100 report
cards into a sheet, and that allow the main page to fill with
information. The problem I am facing, is that in one section of the
Report Card, there are MULTIPLE answers. I need to be able to "tally"
how many times one issue was marked.

Example :
Section 1 is : Agent ID & Scope of Appointmen
There are 7 selections in this section.

QA Agents will then listen to a call, and mark the appropriate
selection, if the Agent is non-compliant. I need to be able to "tally"
everytime a selection is made, and display it on the master page. The 7
sections are :

1) Agent did not give their full name.
2) Agent did not state the company name.
3) Agent did not state they were licensed.
4) Agent did not give the scope.
5) Agent covered this section on one or more calls, but not all calls.
6) Agent skipped this section.
7) Other compliance issue.


Let's say the QA Rep chooses 1,4 & 7.
Qa Rep 2 choose 4, 7 & 2.

I need to be able to display on my master page that selection 1, was
chosen once. Selection 2, was chosen once. And selection 7 was chosen
twice.

If anyone can hepl,, if its even possible, I would apprciate it!!




--
JPP


Perhaps COUNTIF would help. Send me your file if desired.
  #3   Report Post  
JPP JPP is offline
Member
 
Posts: 35
Default

Unfortunately, a count if statement doesn't work. The only way I have been able to get this to REMOTELY work, is with this code :

=IF('CCI Info'!O12=”1) Agent did not give their full name.,2) Agent did not state the company name.,3) Agent did not state they are licensed.,4) Agent did not give the scope.,5) Agent covered this section on one or more calls, but not all calls., 'CCI Info'!$O$12, “”)

But the problem is, you have to repeat this code, over & over. Its become over daunting. The other problem is, there are multiple selections in each section. Section one for example has 8 selections. That means there could be a possible.... What... 100 combination choices. That would make this code PAGES long.
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 259
Default Seperating Information In an Excel Sheet

Don's suggestion of using a CountIf() would work well although, having
said that, it would depend greatly on the layout:

Heres a little on-the-fly suggestion:

CCI Info Sheet

A B C D E F G
1 1 2 3 4 5 6 7
2 1 2 3 5 6
3 3 7
4 1 2 4 6
5 3 4 5 7

Master Sheet:

A B C D E F G
1 1 2 3 4 5 6 7
2

A2 = =COUNTIF('CCI Info'!$A$2:$G$30000,"=1")
B2 = =COUNTIF('CCI Info'!$A$2:$G$30000,"=2")
C2 = =COUNTIF('CCI Info'!$A$2:$G$30000,"=3")
D2 = =COUNTIF('CCI Info'!$A$2:$G$30000,"=4")
E2 = =COUNTIF('CCI Info'!$A$2:$G$30000,"=5")
F2 = =COUNTIF('CCI Info'!$A$2:$G$30000,"=6")
G2 = =COUNTIF('CCI Info'!$A$2:$G$30000,"=7")

The above assumes both sheets'row 1 is header details.

The result of the above give you the following:

Master Sheet:

A B C D E F G
1 1 2 3 4 5 6 7
2 3 3 4 3 3 3 3


You can look at this from other value perspectives, by that I mean you
could mark each intersecting row/column with an "X" or just a "1" in
which case you would change the countif to the following:

A2 = =COUNTIF('CCI Info'!$A$2:$A$30000,"=1")
B2 = =COUNTIF('CCI Info'!$B$2:$B$30000,"=1")
C2 = =COUNTIF('CCI Info'!$C$2:$C$30000,"=1")
D2 = =COUNTIF('CCI Info'!$D$2:$D$30000,"=1")
E2 = =COUNTIF('CCI Info'!$E$2:$E$30000,"=1")
F2 = =COUNTIF('CCI Info'!$F$2:$F$30000,"=1")
G2 = =COUNTIF('CCI Info'!$G$2:$G$30000,"=1")

OR

A2 = =COUNTIF('CCI Info'!$A$2:$A$30000,"=x")
B2 = =COUNTIF('CCI Info'!$B$2:$B$30000,"=x")
C2 = =COUNTIF('CCI Info'!$C$2:$C$30000,"=x")
D2 = =COUNTIF('CCI Info'!$D$2:$D$30000,"=x")
E2 = =COUNTIF('CCI Info'!$E$2:$E$30000,"=x")
F2 = =COUNTIF('CCI Info'!$F$2:$F$30000,"=x")
G2 = =COUNTIF('CCI Info'!$G$2:$G$30000,"=x")

If all this fails to help, you will need to give us a look at the
workbook so we can suss it out.

HTH
Mick.





  #5   Report Post  
JPP JPP is offline
Member
 
Posts: 35
Default

Yea Mick, I have tried that, and unfortunately that doesnt work, because the full selection is 1) Agent did not give their full name. It is not counting the entires when I just do a "1".


  #6   Report Post  
JPP JPP is offline
Member
 
Posts: 35
Default

Then when someone make MULTIPLE selections from the same list..... Then is gets wacky....
  #7   Report Post  
JPP JPP is offline
Member
 
Posts: 35
Default

Check out the monster code I had to put behind the 100% compliant calls section.
  #8   Report Post  
JPP JPP is offline
Member
 
Posts: 35
Default

ooooooooooooooooooooooooook.
Attached Files
File Type: zip Common Compliance Issues (Master).zip (96.4 KB, 61 views)
  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,522
Default Seperating Information In an Excel Sheet

On Thursday, May 10, 2012 9:23:03 AM UTC-5, JPP wrote:
Ok, I have a report, which enables the user to copy and paste 100 report
cards into a sheet, and that allow the main page to fill with
information. The problem I am facing, is that in one section of the
Report Card, there are MULTIPLE answers. I need to be able to "tally"
how many times one issue was marked.

Example :
Section 1 is : Agent ID & Scope of Appointmen
There are 7 selections in this section.

QA Agents will then listen to a call, and mark the appropriate
selection, if the Agent is non-compliant. I need to be able to "tally"
everytime a selection is made, and display it on the master page. The 7
sections are :

1) Agent did not give their full name.
2) Agent did not state the company name.
3) Agent did not state they were licensed.
4) Agent did not give the scope.
5) Agent covered this section on one or more calls, but not all calls.
6) Agent skipped this section.
7) Other compliance issue.


Let's say the QA Rep chooses 1,4 & 7.
Qa Rep 2 choose 4, 7 & 2.

I need to be able to display on my master page that selection 1, was
chosen once. Selection 2, was chosen once. And selection 7 was chosen
twice.

If anyone can hepl,, if its even possible, I would apprciate it!!




--
JPP



You may send direct to me with a complete explanation.
  #10   Report Post  
JPP JPP is offline
Member
 
Posts: 35
Default

Quote:
You may send direct to me with a complete explanation.
Im not sure how to send this DIRECTLY to you. There is no contact information in your profile.


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
Seperating information in a cell WBWootton Excel Discussion (Misc queries) 1 March 31st 09 03:57 PM
Seperating information in a cell andyK Excel Worksheet Functions 9 August 5th 08 06:15 PM
in excel how to pull only used information to another sheet kathysperdie04 Excel Worksheet Functions 1 March 28th 08 07:25 PM
How do you take out duplicated information on a excel sheet? Shawnna Excel Discussion (Misc queries) 1 July 3rd 07 04:15 PM
Excel - automatic information from one sheet to another?? Kathrine J Wathne Excel Discussion (Misc queries) 2 August 30th 05 09:49 AM


All times are GMT +1. The time now is 11:37 PM.

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

About Us

"It's about Microsoft Excel"