I have a transcripts spreadsheet and want to print them out.
I have a grade sheet and report spreasheet.
Are there any way I can sent the data into my report spreadsheet one student
at one time?
The way I can think is to assign the value in to report and print the
spreadsheet.
Please advice are there any better solution?
Your information is great appreciated,
> I have a transcripts spreadsheet and want to print them out.
>
[quoted text clipped - 7 lines]
>
> Please advice are there any better solution?
I take it the sheet grade has a row per student?
Do you use a unique code/number per student? In the first column?
The headers are in the first row of grade?
Then the cells in your report should contain a formula like:
=VLOOKUP($A$1,grade!$a$2:$z$999,2)
where in A1 (of your report sheet) you enter the code/number, grade!
a1:z999 is the range where you keep the grade/student data and 2 is the
second column from the left where you take the value to be put in the
cell with your formula. Of course you change that last number that for
each data cell in report.
It is presumed the code/number is in increasing order. If not, you should
change the formula to:
=VLOOKUP($A$1,grade!$a$2:$z$999,2,false)
Of course you have to change the cell addresses and sheet name to those
in the design you have made.
The dollar signs in the formula are used to fix the cell and range
addresses so that you may copy the formula to other cells and only change
the number of the column where you pick the data.

Signature
It is I, DeauDeau
(Free after monsieur Leclerc in 'Allo, 'allo)
Dodo - 04 Sep 2005 17:20 GMT
>> I have a transcripts spreadsheet and want to print them out.
>>
[quoted text clipped - 33 lines]
> addresses so that you may copy the formula to other cells and only
> change the number of the column where you pick the data.
Correction: the formulas should look like:
=VLOOKUP($A$1,grade!$a$1:$z$999,2)
=VLOOKUP($A$1,grade!$a$1:$z$999,2,false)

Signature
It is I, DeauDeau
(Free after monsieur Leclerc in 'Allo, 'allo)