starsandsuch
New Member
- Joined
- Sep 11, 2014
- Messages
- 2
Hello, I am working in 2013 Excel and I have a workbook (2 sheets) trying to update our badge system; this is my first post so I will try to explain my issue the best I can.
I have my unique ID on both sheets. I am wanting my data to indicate whether an individual is 'Certified' as a Fork Truck Operator or a Press Operator. The certification status is on the 'Learning Plan Data' sheet (Columns are UserName, Last-First Name, Plan Name (telling 'Fork Truck Certification_01' or 'Press Operator Certification', and Plan Completion Status (telling 'Certified' or 'Pending' and I am wanting to lookup if a username has the 'Press Operator Certification' and it is 'Certified' then in the 'Member Data' sheet, it will list 'Certified in the 'Press Operator' column. Not every member listed on the 'Member Data' sheet possesses these certification. If the member has been assigned a certification learning plan but has not yet met the requirements, they will show 'Pending' in the Plan Completion Status column in the 'LearningPlanData' worksheet; if they have completed the requirements then they will show as 'certified'.
Right now, I was able to work on the 'MemberData' sheet and pull over if the user has the 'Fork Truck Certification_01' listed in one column:
=IF(VLOOKUP(A2,LearningPlanData!$A$2:$D$15,3,1)=$M$1,$M$1,0)
'Press Operator Certification' listed in another column:
=IF(VLOOKUP(A3,LearningPlanData!$A$2:$D$15,3,0)=$N$1,$N$1,0)
And I had to create a third column (what I want to get rid of) saying if the certification is 'Pending' or 'Certified':
=VLOOKUP(A3,LPTable,4,FALSE)
I am needing a way to basically combine the information from the 'Fork Truck Certification_01' column and if it matches 'Certified' then have it enter the value 'Certified'. Is there a way to only return the value found in address M1 and N1 respectively when a status of 'Certified' is shown for the individual on the 'LearningPlanData' sheet? I do not need it to come back as 'Pending' because the badge system will mark the individual as certified. A value or '1' or 'True' would be alright for the unique value stating the user has the certification. I tossed around the idea of using MATCH but I cannot get it to manipulate that data, I am open to any suggestions.
Any help is appreciated; I have exhausted all of my ways of thinking. Thanks in advance.
I have my unique ID on both sheets. I am wanting my data to indicate whether an individual is 'Certified' as a Fork Truck Operator or a Press Operator. The certification status is on the 'Learning Plan Data' sheet (Columns are UserName, Last-First Name, Plan Name (telling 'Fork Truck Certification_01' or 'Press Operator Certification', and Plan Completion Status (telling 'Certified' or 'Pending' and I am wanting to lookup if a username has the 'Press Operator Certification' and it is 'Certified' then in the 'Member Data' sheet, it will list 'Certified in the 'Press Operator' column. Not every member listed on the 'Member Data' sheet possesses these certification. If the member has been assigned a certification learning plan but has not yet met the requirements, they will show 'Pending' in the Plan Completion Status column in the 'LearningPlanData' worksheet; if they have completed the requirements then they will show as 'certified'.
Right now, I was able to work on the 'MemberData' sheet and pull over if the user has the 'Fork Truck Certification_01' listed in one column:
=IF(VLOOKUP(A2,LearningPlanData!$A$2:$D$15,3,1)=$M$1,$M$1,0)
'Press Operator Certification' listed in another column:
=IF(VLOOKUP(A3,LearningPlanData!$A$2:$D$15,3,0)=$N$1,$N$1,0)
And I had to create a third column (what I want to get rid of) saying if the certification is 'Pending' or 'Certified':
=VLOOKUP(A3,LPTable,4,FALSE)
I am needing a way to basically combine the information from the 'Fork Truck Certification_01' column and if it matches 'Certified' then have it enter the value 'Certified'. Is there a way to only return the value found in address M1 and N1 respectively when a status of 'Certified' is shown for the individual on the 'LearningPlanData' sheet? I do not need it to come back as 'Pending' because the badge system will mark the individual as certified. A value or '1' or 'True' would be alright for the unique value stating the user has the certification. I tossed around the idea of using MATCH but I cannot get it to manipulate that data, I am open to any suggestions.
Any help is appreciated; I have exhausted all of my ways of thinking. Thanks in advance.