Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
CrossTable (Semester, Marks, 3)
LOAD ID,
Name,
Subject,
Sem1,
Sem2,
Sem3,
Sem4
FROM
[Marks (1).xlsx]
(ooxml, embedded labels, table is Sheet2);
EXIT SCRIPT;
Hi Vamsee,
The expected output is shown in the Sheet1. The Marks1 and MArks2 data should be joined or linked to to get the expected output. The challange im facing is how to show the MarksAVG1,MarksAVG2 for each Sem1,2..etc respectively.
Marks1:
LOAD ID,
[Student Name],
Subject,
Sem1,
Sem2,
Sem3,
Sem4
FROM
[Marks.xlsx]
(ooxml, embedded labels, table is Sheet2);
Marks2:
LOAD ID,
MarksAVG1,
MarksAVG2,
MarksAVG3,
MarksAVG4
FROM
[Marks.xlsx]
(ooxml, embedded labels, table is Sheet3);
As far as I understand w.r.t our previous discussions and excel sample provided
Sheet2 is source data.
Sheet1 is the output view required.
Sheet3 is a view of averages acquired from sheet2.
Please find the attached screenshot.
I don't get it. How are averages your source data?
Anyway, you can achieve the same averages from sheet2 itself.