nguytravis
New Member
- Joined
- Nov 16, 2018
- Messages
- 3
Hello all,
Looking to make a dynamic tool which can take a static list and copy it 1-4 times (also inserting data from a small table)
I have a list of 30 student names in column A.
In columns C:E I have a small table with the following data:
C: Class name
D: Instructor
E: Credits
[TABLE="width: 500"]
<tbody>[TR]
[TD]Class name[/TD]
[TD]Instructor[/TD]
[TD]Credits[/TD]
[/TR]
[TR]
[TD]Baking[/TD]
[TD]smith[/TD]
[TD]22[/TD]
[/TR]
[TR]
[TD]HVAC[/TD]
[TD]Jones[/TD]
[TD]15[/TD]
[/TR]
[TR]
[TD]Accounting[/TD]
[TD]Roberts[/TD]
[TD]7[/TD]
[/TR]
[TR]
[TD]Dental[/TD]
[TD]Ord[/TD]
[TD]8
[/TD]
[/TR]
</tbody>[/TABLE]
1) Assume the sample table above is reflective of our table in columns C:E. I would want 120 unique lines generated because there are 4 classes. 4 classes * 30 students = 120
The names from column A would be copied into column H(or some random column to the right of our data) 4 times, since there are four classes. Additionally, I would want the data from the table in C:E to be reflected in each. So each name shows up 4 times, but each line is reflecting a unique class name, instructor and credit.
2) If the table above only had 3 classes entered (assume Dental is removed), I would want 90 unique lines generated. (Each person from column A would show up 3 times. One line would be Baking, one would be HVAC and one would be Accounting.
3)The table above only has 2 classes entered, I would want 60 unique lines.
4)The table above only has 1 class, I still want the 30 lines to generate (adding in the class name, instructor and credits).
I am a decent user of excel. This tool is aimed at folks who are very weak at computing in general, so the fewer steps,the better.
I can have them click a macro, but not sure I trust folks to do much more than that .
Thanks in advance!
Looking to make a dynamic tool which can take a static list and copy it 1-4 times (also inserting data from a small table)
I have a list of 30 student names in column A.
In columns C:E I have a small table with the following data:
C: Class name
D: Instructor
E: Credits
[TABLE="width: 500"]
<tbody>[TR]
[TD]Class name[/TD]
[TD]Instructor[/TD]
[TD]Credits[/TD]
[/TR]
[TR]
[TD]Baking[/TD]
[TD]smith[/TD]
[TD]22[/TD]
[/TR]
[TR]
[TD]HVAC[/TD]
[TD]Jones[/TD]
[TD]15[/TD]
[/TR]
[TR]
[TD]Accounting[/TD]
[TD]Roberts[/TD]
[TD]7[/TD]
[/TR]
[TR]
[TD]Dental[/TD]
[TD]Ord[/TD]
[TD]8
[/TD]
[/TR]
</tbody>[/TABLE]
1) Assume the sample table above is reflective of our table in columns C:E. I would want 120 unique lines generated because there are 4 classes. 4 classes * 30 students = 120
The names from column A would be copied into column H(or some random column to the right of our data) 4 times, since there are four classes. Additionally, I would want the data from the table in C:E to be reflected in each. So each name shows up 4 times, but each line is reflecting a unique class name, instructor and credit.
2) If the table above only had 3 classes entered (assume Dental is removed), I would want 90 unique lines generated. (Each person from column A would show up 3 times. One line would be Baking, one would be HVAC and one would be Accounting.
3)The table above only has 2 classes entered, I would want 60 unique lines.
4)The table above only has 1 class, I still want the 30 lines to generate (adding in the class name, instructor and credits).
I am a decent user of excel. This tool is aimed at folks who are very weak at computing in general, so the fewer steps,the better.
I can have them click a macro, but not sure I trust folks to do much more than that .
Thanks in advance!