Hi Gurus,
I need to perform a function similar to this previously posted topic, but with a slight twist. I've pasted the link below and am repeating the pertinent content. There is a great solution file posted with the below link that can be used if needed to further understand.
http://chandoo.org/forums/topic/multiple-rows-in-single-row
Please note I am not a guru, but intermediate formula and macro novice (aka, not VBA savvy).
Issue:
In my example, I have a large list with multiple rows of data applicable to the same StuName (or can use StuNu. if easier) and the individual courses for the student listed in separate rows within the same column (Course)
Present format of sheet
[pre]
[/pre]
I appreciate any and all help and education with this!
I need to perform a function similar to this previously posted topic, but with a slight twist. I've pasted the link below and am repeating the pertinent content. There is a great solution file posted with the below link that can be used if needed to further understand.
http://chandoo.org/forums/topic/multiple-rows-in-single-row
Please note I am not a guru, but intermediate formula and macro novice (aka, not VBA savvy).
Issue:
In my example, I have a large list with multiple rows of data applicable to the same StuName (or can use StuNu. if easier) and the individual courses for the student listed in separate rows within the same column (Course)
Present format of sheet
[pre]
Code:
stuNo. || Stu Name || Course
1 || Sachin T || XL
1 || Sachin T || WD
2 || Yuvi || XL
2 || Yuvi || PPT
Need:
I would like to convert this into a single row for each student where the courses are then entered into the correct pre-defined column. If a particular course is not being taken by the student, the column should be blank.
Required format
StuNo. || Stu Name || CourseXL || CourseWD || CoursePPT
1 || Sachin T || XL || WD ||
2 || Yuvi || XL || || PPT
I appreciate any and all help and education with this!