add preview pdf

This commit is contained in:
kamonwan taengsuk
2023-02-28 15:06:47 +07:00
parent 8940657239
commit 6b8658d50b
5 changed files with 1994 additions and 75 deletions

View File

@@ -1,6 +1,9 @@
using System; using System;
using System.Collections.Generic;
using System.IO; using System.IO;
using ClosedXML.Excel; using ClosedXML.Excel;
using FastReport;
using FastReport.Export.Pdf;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using rmutr_report.Models; using rmutr_report.Models;
using Swashbuckle.AspNetCore.Annotations; using Swashbuckle.AspNetCore.Annotations;
@@ -21,6 +24,125 @@ namespace rmutr_report.Controllers
[ApiExplorerSettings(GroupName = "reports")] [ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetDetailStdReport([FromRoute] string type, [FromBody] student_totalcampus _std) public IActionResult GetDetailStdReport([FromRoute] string type, [FromBody] student_totalcampus _std)
{ {
var hr1 = new List<student_totalcampus>() {_std};
foreach (var header in _std.header_data)
{
header.total1 = header.male1 + header.female1;
header.total2 = header.male2 + header.female2;
header.total3 = header.male3 + header.female3;
header.total4 = header.male4 + header.female4;
header.total5 = header.male5 + header.female5;
header.total6 = header.male6 + header.female6;
header.total7 = header.male1 + header.male2 + header.male3 + header.male4 +
header.male5 + header.male6 +
header.female1 + header.female2 + header.female3 + header.female4 +
header.female5 + header.female6;
header.room7 = header.room1 + header.room2 + header.room3 +
header.room4 + header.room5 + header.room6;
header.male7 = header.male1 + header.male2 + header.male3 + header.male4 +
header.male5 + header.male6;
header.female7 = header.female1 + header.female2 + header.female3 + header.female4 +
header.female5 + header.female6;
foreach (var data in header.data)
{
data.total1 = data.male1 + data.female1;
data.total2 = data.male2 + data.female2;
data.total3 = data.male3 + data.female3;
data.total4 = data.male4 + data.female4;
data.total5 = data.male5 + data.female5;
data.total6 = data.male6 + data.female6;
data.total7 = data.male1 + data.male2 + data.male3 + data.male4 +
data.male5 + data.male6 +
data.female1 + data.female2 + data.female3 + data.female4 +
data.female5 + data.female6;
data.room7 = data.room1 + data.room2 + data.room3 +
data.room4 + data.room5 + data.room6;
data.male7 = data.male1 + data.male2 + data.male3 + data.male4 +
data.male5 + data.male6;
data.female7 = data.female1 + data.female2 + data.female3 + data.female4 +
data.female5 + data.female6;
if (header.filter == "0")
{
data.name = null;
data.male1 = null;
data.male2 = null;
data.male3 = null;
data.male4 = null;
data.male5 = null;
data.male6 = null;
data.male7 = null;
data.female1 = null;
data.female2 = null;
data.female3 = null;
data.female4 = null;
data.female5 = null;
data.female6 = null;
data.female7 = null;
data.total1 = null;
data.total2 = null;
data.total3 = null;
data.total4 = null;
data.total5 = null;
data.total6 = null;
data.total7 = null;
data.room1 = null;
data.room2 = null;
data.room3 = null;
data.room4 = null;
data.room5 = null;
data.room6 = null;
data.room7 = null;
}
}
if (header.filter == "0")
{
header.header_name = null;
header.male1 = null;
header.male2 = null;
header.male3 = null;
header.male4 = null;
header.male5 = null;
header.male6 = null;
header.male7 = null;
header.female1 = null;
header.female2 = null;
header.female3 = null;
header.female4 = null;
header.female5 = null;
header.female6 = null;
header.female7 = null;
header.total1 = null;
header.total2 = null;
header.total3 = null;
header.total4 = null;
header.total5 = null;
header.total6 = null;
header.total7 = null;
header.room1 = null;
header.room2 = null;
header.room3 = null;
header.room4 = null;
header.room5 = null;
header.room6 = null;
header.room7 = null;
}
}
Report report = new Report();
report.Load(_setting.report_path + "student_total_campus.frx");
report.RegisterData(hr1, "student_totalcampus");
report.Prepare();
MemoryStream stream1 = new MemoryStream();
switch (type)
{
case "pdf":
PDFExport pdf = new PDFExport();
report.Export(pdf, stream1);
stream1.Seek(0, SeekOrigin.Begin);
return File(stream1, "application/pdf");
}
var workbook = new XLWorkbook(); var workbook = new XLWorkbook();
var ws = workbook.Worksheets.Add("student_total_campus"); var ws = workbook.Worksheets.Add("student_total_campus");
ws.Range("A1:AD1").Merge().Value = "จำนวนนักศึกษาทั้งหมด ปีการศึกษา " + _std.academic_year_name_th + ws.Range("A1:AD1").Merge().Value = "จำนวนนักศึกษาทั้งหมด ปีการศึกษา " + _std.academic_year_name_th +
@@ -154,7 +276,7 @@ namespace rmutr_report.Controllers
header.room6; header.room6;
if (header.filter == 1) if (header.filter == "1")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -207,7 +329,7 @@ namespace rmutr_report.Controllers
row++; row++;
} }
if (header.filter == (decimal?) 1.1) if (header.filter == "1.1")
{ {
foreach (var detail in header.data) foreach (var detail in header.data)
{ {
@@ -265,7 +387,7 @@ namespace rmutr_report.Controllers
} }
} }
if (header.filter == 2) if (header.filter == "2")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -319,7 +441,7 @@ namespace rmutr_report.Controllers
row++; row++;
} }
if (header.filter == 3) if (header.filter == "3")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -373,7 +495,7 @@ namespace rmutr_report.Controllers
row++; row++;
} }
if (header.filter == 4) if (header.filter == "4")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -426,7 +548,7 @@ namespace rmutr_report.Controllers
row++; row++;
} }
if (header.filter == (decimal?) 4.1) if (header.filter == "4.1")
{ {
foreach (var detail in header.data) foreach (var detail in header.data)
{ {
@@ -486,7 +608,7 @@ namespace rmutr_report.Controllers
//rowno++; //rowno++;
} }
if (header.filter == (decimal?) 4.2) if (header.filter == "4.2")
{ {
foreach (var detail in header.data) foreach (var detail in header.data)
{ {
@@ -552,7 +674,7 @@ namespace rmutr_report.Controllers
} }
} }
if (header.filter == 5) if (header.filter == "5")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -605,7 +727,7 @@ namespace rmutr_report.Controllers
row++; row++;
} }
if (header.filter == (decimal?) 5.1) if (header.filter == "5.1")
{ {
foreach (var detail in header.data) foreach (var detail in header.data)
{ {
@@ -673,7 +795,7 @@ namespace rmutr_report.Controllers
} }
} }
if (header.filter == 6) if (header.filter == "6")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -726,7 +848,7 @@ namespace rmutr_report.Controllers
row++; row++;
} }
if (header.filter == (decimal?) 3.1) if (header.filter == "3.1")
{ {
foreach (var detail in header.data) foreach (var detail in header.data)
{ {
@@ -791,7 +913,7 @@ namespace rmutr_report.Controllers
} }
} }
if (header.filter == 0) if (header.filter == "0")
{ {
ws.Cell(row, 1).Value = null; ws.Cell(row, 1).Value = null;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;

View File

@@ -1,6 +1,9 @@
using System; using System;
using System.Collections.Generic;
using System.IO; using System.IO;
using ClosedXML.Excel; using ClosedXML.Excel;
using FastReport;
using FastReport.Export.Pdf;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using rmutr_report.Models; using rmutr_report.Models;
using Swashbuckle.AspNetCore.Annotations; using Swashbuckle.AspNetCore.Annotations;
@@ -21,7 +24,129 @@ namespace rmutr_report.Controllers
[ApiExplorerSettings(GroupName = "reports")] [ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetDetailStd2Report([FromRoute] string type, [FromBody] student_totalcampus _std) public IActionResult GetDetailStd2Report([FromRoute] string type, [FromBody] student_totalcampus _std)
{ {
var workbook = new XLWorkbook(); var hr1 = new List<student_totalcampus>() {_std};
foreach (var header in _std.header_data)
{
header.total1 = header.male1 + header.female1;
header.total2 = header.male2 + header.female2;
header.total3 = header.male3 + header.female3;
header.total4 = header.male4 + header.female4;
header.total5 = header.male5 + header.female5;
header.total6 = header.male6 + header.female6;
header.total7 = header.male1 + header.male2 + header.male3 + header.male4 +
header.male5 + header.male6 +
header.female1 + header.female2 + header.female3 + header.female4 +
header.female5 + header.female6;
header.room7 = header.room1 + header.room2 + header.room3 +
header.room4 + header.room5 + header.room6;
header.male7 = header.male1 + header.male2 + header.male3 + header.male4 +
header.male5 + header.male6;
header.female7 = header.female1 + header.female2 + header.female3 + header.female4 +
header.female5 + header.female6;
foreach (var data in header.data)
{
data.total1 = data.male1 + data.female1;
data.total2 = data.male2 + data.female2;
data.total3 = data.male3 + data.female3;
data.total4 = data.male4 + data.female4;
data.total5 = data.male5 + data.female5;
data.total6 = data.male6 + data.female6;
data.total7 = data.male1 + data.male2 + data.male3 + data.male4 +
data.male5 + data.male6 +
data.female1 + data.female2 + data.female3 + data.female4 +
data.female5 + data.female6;
data.room7 = data.room1 + data.room2 + data.room3 +
data.room4 + data.room5 + data.room6;
data.male7 = data.male1 + data.male2 + data.male3 + data.male4 +
data.male5 + data.male6;
data.female7 = data.female1 + data.female2 + data.female3 + data.female4 +
data.female5 + data.female6;
if (header.filter == "0")
{
data.name = null;
data.male1 = null;
data.male2 = null;
data.male3 = null;
data.male4 = null;
data.male5 = null;
data.male6 = null;
data.male7 = null;
data.female1 = null;
data.female2 = null;
data.female3 = null;
data.female4 = null;
data.female5 = null;
data.female6 = null;
data.female7 = null;
data.total1 = null;
data.total2 = null;
data.total3 = null;
data.total4 = null;
data.total5 = null;
data.total6 = null;
data.total7 = null;
data.room1 = null;
data.room2 = null;
data.room3 = null;
data.room4 = null;
data.room5 = null;
data.room6 = null;
data.room7 = null;
}
}
if (header.filter == "0")
{
header.header_name = null;
header.male1 = null;
header.male2 = null;
header.male3 = null;
header.male4 = null;
header.male5 = null;
header.male6 = null;
header.male7 = null;
header.female1 = null;
header.female2 = null;
header.female3 = null;
header.female4 = null;
header.female5 = null;
header.female6 = null;
header.female7 = null;
header.total1 = null;
header.total2 = null;
header.total3 = null;
header.total4 = null;
header.total5 = null;
header.total6 = null;
header.total7 = null;
header.room1 = null;
header.room2 = null;
header.room3 = null;
header.room4 = null;
header.room5 = null;
header.room6 = null;
header.room7 = null;
}
}
Report report = new Report();
report.Load(_setting.report_path + "summary_student_total_campus.frx");
report.RegisterData(hr1, "student_totalcampus");
report.Prepare();
MemoryStream stream1 = new MemoryStream();
switch (type)
{
case "pdf":
PDFExport pdf = new PDFExport();
report.Export(pdf, stream1);
stream1.Seek(0, SeekOrigin.Begin);
return File(stream1, "application/pdf");
}
var workbook = new XLWorkbook();
var ws = workbook.Worksheets.Add("student_total_campus"); var ws = workbook.Worksheets.Add("student_total_campus");
ws.Range("A1:AD1").Merge().Value = "จำนวนนักศึกษาทั้งหมด ปีการศึกษา " + _std.academic_year_name_th + ws.Range("A1:AD1").Merge().Value = "จำนวนนักศึกษาทั้งหมด ปีการศึกษา " + _std.academic_year_name_th +
" ภาคการศึกษาที่ " + _std.academic_semester_name_th + " ภาคการศึกษาที่ " + _std.academic_semester_name_th +
@@ -145,14 +270,14 @@ namespace rmutr_report.Controllers
{ {
decimal? sum1 = header.male1 + header.female1; decimal? sum1 = header.male1 + header.female1;
decimal? sum2 = header.male2 + header.female2; decimal? sum2 = header.male2 + header.female2;
decimal? sum3 = header.male3 + header.female3; decimal? sum3 = header.male3 + header.female3;
decimal? sum4 = header.male4 + header.female4; decimal? sum4 = header.male4 + header.female4;
decimal? sum5 = header.male5 + header.female5; decimal? sum5 = header.male5 + header.female5;
decimal? sum6 = header.male6 + header.female6; decimal? sum6 = header.male6 + header.female6;
decimal? sumroom = header.room1 + header.room2 + header.room3 + header.room4 + header.room5 + decimal? sumroom = header.room1 + header.room2 + header.room3 + header.room4 + header.room5 +
header.room6; header.room6;
if (header.filter == 1) if (header.filter == "1")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -208,7 +333,7 @@ namespace rmutr_report.Controllers
row++; row++;
} }
// if (header.filter == (decimal?) 1.1) // if (header.filter == (double?) 1.1)
// { // {
// foreach (var detail in header.data) // foreach (var detail in header.data)
// { // {
@@ -260,7 +385,7 @@ namespace rmutr_report.Controllers
// } // }
// } // }
if (header.filter == 2) if (header.filter == "2")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -316,7 +441,7 @@ namespace rmutr_report.Controllers
row++; row++;
} }
if (header.filter == 3) if (header.filter == "3")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -373,7 +498,7 @@ namespace rmutr_report.Controllers
row++; row++;
} }
if (header.filter == 4) if (header.filter == "4")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -427,7 +552,7 @@ namespace rmutr_report.Controllers
row++; row++;
} }
// //
// if (header.filter == (decimal?) 4.2) // if (header.filter == (double?) 4.2)
// { // {
// foreach (var detail in header.data) // foreach (var detail in header.data)
// { // {
@@ -477,7 +602,7 @@ namespace rmutr_report.Controllers
// } // }
// } // }
if (header.filter == 5) if (header.filter == "5")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -533,7 +658,7 @@ namespace rmutr_report.Controllers
row++; row++;
} }
if (header.filter == 6) if (header.filter == "6")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -589,17 +714,17 @@ namespace rmutr_report.Controllers
row++; row++;
} }
if (header.filter == (decimal?) 6.1) if (header.filter == "6.1")
{ {
foreach (var detail in header.data) foreach (var detail in header.data)
{ {
decimal? sums1 = detail.male1 + detail.female1; decimal? sums1 = detail.male1 + detail.female1;
decimal? sums2 = detail.male2 + detail.female2; decimal? sums2 = detail.male2 + detail.female2;
decimal? sums3 = detail.male3 + detail.female3; decimal? sums3 = detail.male3 + detail.female3;
decimal? sums4 = detail.male4 + detail.female4; decimal? sums4 = detail.male4 + detail.female4;
decimal? sums5 = detail.male5 + detail.female5; decimal? sums5 = detail.male5 + detail.female5;
decimal? sums6 = detail.male6 + detail.female6; decimal? sums6 = detail.male6 + detail.female6;
decimal? sumsroom = detail.room1 + detail.room2 + detail.room3 + detail.room4 + decimal? sumsroom = detail.room1 + detail.room2 + detail.room3 + detail.room4 +
detail.room5 + detail.room6; detail.room5 + detail.room6;
ws.Cell(row, 1).Value = detail.name; ws.Cell(row, 1).Value = detail.name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -655,7 +780,7 @@ namespace rmutr_report.Controllers
} }
} }
if (header.filter == 7) if (header.filter == "7")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -711,18 +836,18 @@ namespace rmutr_report.Controllers
row++; row++;
} }
if (header.filter == (decimal?) 7.1) if (header.filter == "7.1")
{ {
foreach (var detail in header.data) foreach (var detail in header.data)
{ {
decimal? sums1 = detail.male1 + detail.female1; decimal? sums1 = detail.male1 + detail.female1;
decimal? sums2 = detail.male2 + detail.female2; decimal? sums2 = detail.male2 + detail.female2;
decimal? sums3 = detail.male3 + detail.female3; decimal? sums3 = detail.male3 + detail.female3;
decimal? sums4 = detail.male4 + detail.female4; decimal? sums4 = detail.male4 + detail.female4;
decimal? sums5 = detail.male5 + detail.female5; decimal? sums5 = detail.male5 + detail.female5;
decimal? sums6 = detail.male6 + detail.female6; decimal? sums6 = detail.male6 + detail.female6;
decimal? sumsroom = detail.room1 + detail.room2 + detail.room3 + detail.room4 + decimal? sumsroom = detail.room1 + detail.room2 + detail.room3 + detail.room4 +
detail.room5 + detail.room6; detail.room5 + detail.room6;
ws.Cell(row, 1).Value = detail.name; ws.Cell(row, 1).Value = detail.name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
ws.Cell(row, 3).Value = detail.male1; ws.Cell(row, 3).Value = detail.male1;
@@ -777,7 +902,7 @@ namespace rmutr_report.Controllers
} }
} }
if (header.filter == 8) if (header.filter == "8")
{ {
ws.Cell(row, 1).Value = header.header_name; ws.Cell(row, 1).Value = header.header_name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -831,17 +956,17 @@ namespace rmutr_report.Controllers
row++; row++;
} }
if (header.filter == (decimal?) 8.1) if (header.filter == "8.1")
{ {
foreach (var detail in header.data) foreach (var detail in header.data)
{ {
decimal? sums1 = detail.male1 + detail.female1; decimal? sums1 = detail.male1 + detail.female1;
decimal? sums2 = detail.male2 + detail.female2; decimal? sums2 = detail.male2 + detail.female2;
decimal? sums3 = detail.male3 + detail.female3; decimal? sums3 = detail.male3 + detail.female3;
decimal? sums4 = detail.male4 + detail.female4; decimal? sums4 = detail.male4 + detail.female4;
decimal? sums5 = detail.male5 + detail.female5; decimal? sums5 = detail.male5 + detail.female5;
decimal? sums6 = detail.male6 + detail.female6; decimal? sums6 = detail.male6 + detail.female6;
decimal? sumsroom = detail.room1 + detail.room2 + detail.room3 + detail.room4 + decimal? sumsroom = detail.room1 + detail.room2 + detail.room3 + detail.room4 +
detail.room5 + detail.room6; detail.room5 + detail.room6;
ws.Cell(row, 1).Value = detail.name; ws.Cell(row, 1).Value = detail.name;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -900,7 +1025,7 @@ namespace rmutr_report.Controllers
} }
} }
if (header.filter == 0) if (header.filter == "0")
{ {
ws.Cell(row, 1).Value = null; ws.Cell(row, 1).Value = null;
ws.Cell(row, 2).Value = null; ws.Cell(row, 2).Value = null;
@@ -951,16 +1076,21 @@ namespace rmutr_report.Controllers
} }
} }
using (var stream = new MemoryStream()) if (type == "xlsx")
{ {
workbook.SaveAs(stream); using (var stream = new MemoryStream())
var content = stream.ToArray(); {
string date = DateTime.Now.ToString("yyyyMMddHHmmss"); workbook.SaveAs(stream);
return File( var content = stream.ToArray();
content, string date = DateTime.Now.ToString("yyyyMMddHHmmss");
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", return File(
"sumstd" + date + ".xlsx"); content,
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
"sumstd" + date + ".xlsx");
}
} }
return Ok();
} }
} }
} }

View File

@@ -17,69 +17,71 @@ namespace rmutr_report.Models
public class student_total_campus_data public class student_total_campus_data
{ {
public decimal? filter { get; set; } public string filter { get; set; }
//public double? filter1 { get; set; }
public string header_name { get; set; } public string header_name { get; set; }
public decimal? male1 { get; set; } public decimal? male1 { get; set; }
public decimal? female1 { get; set; } public decimal? female1 { get; set; }
//public decimal? total1 { get; set; } public decimal? total1 { get; set; }
public decimal? room1 { get; set; } public decimal? room1 { get; set; }
public decimal? male2 { get; set; } public decimal? male2 { get; set; }
public decimal? female2 { get; set; } public decimal? female2 { get; set; }
//public decimal? total2 { get; set; } public decimal? total2 { get; set; }
public decimal? room2 { get; set; } public decimal? room2 { get; set; }
public decimal? male3 { get; set; } public decimal? male3 { get; set; }
public decimal? female3 { get; set; } public decimal? female3 { get; set; }
//public decimal? total3{ get; set; } public decimal? total3{ get; set; }
public decimal? room3 { get; set; } public decimal? room3 { get; set; }
public decimal? male4 { get; set; } public decimal? male4 { get; set; }
public decimal? female4 { get; set; } public decimal? female4 { get; set; }
// public decimal? total4 { get; set; } public decimal? total4 { get; set; }
public decimal? room4 { get; set; } public decimal? room4 { get; set; }
public decimal? male5 { get; set; } public decimal? male5 { get; set; }
public decimal? female5 { get; set; } public decimal? female5 { get; set; }
//public decimal? total5 { get; set; } public decimal? total5 { get; set; }
public decimal? room5 { get; set; } public decimal? room5 { get; set; }
public decimal? male6 { get; set; } public decimal? male6 { get; set; }
public decimal? female6 { get; set; } public decimal? female6 { get; set; }
//public decimal? total6 { get; set; } public decimal? total6 { get; set; }
public decimal? room6 { get; set; } public decimal? room6 { get; set; }
//public decimal? male7 { get; set; } public decimal? male7 { get; set; }
//public decimal? female7 { get; set; } public decimal? female7 { get; set; }
//public decimal? total7 { get; set; } public decimal? total7 { get; set; }
//public decimal? room7 { get; set; } public decimal? room7 { get; set; }
public List<detail> data { get; set; } public List<detail> data { get; set; }
} }
public class detail public class detail
{ {
//public decimal? row { get; set; }
public string name { get; set; } public string name { get; set; }
public decimal? male1 { get; set; } public decimal? male1 { get; set; }
public decimal? female1 { get; set; } public decimal? female1 { get; set; }
//public decimal? total1 { get; set; } public decimal? total1 { get; set; }
public decimal? room1 { get; set; } public decimal? room1 { get; set; }
public decimal? male2 { get; set; } public decimal? male2 { get; set; }
public decimal? female2 { get; set; } public decimal? female2 { get; set; }
//public decimal? total2 { get; set; } public decimal? total2 { get; set; }
public decimal? room2 { get; set; } public decimal? room2 { get; set; }
public decimal? male3 { get; set; } public decimal? male3 { get; set; }
public decimal? female3 { get; set; } public decimal? female3 { get; set; }
//public decimal? total3{ get; set; } public decimal? total3{ get; set; }
public decimal? room3 { get; set; } public decimal? room3 { get; set; }
public decimal? male4 { get; set; } public decimal? male4 { get; set; }
public decimal? female4 { get; set; } public decimal? female4 { get; set; }
//public decimal? total4 { get; set; } public decimal? total4 { get; set; }
public decimal? room4 { get; set; } public decimal? room4 { get; set; }
public decimal? male5 { get; set; } public decimal? male5 { get; set; }
public decimal? female5 { get; set; } public decimal? female5 { get; set; }
//public decimal? total5 { get; set; } public decimal? total5 { get; set; }
public decimal? room5 { get; set; } public decimal? room5 { get; set; }
public decimal? male6 { get; set; } public decimal? male6 { get; set; }
public decimal? female6 { get; set; } public decimal? female6 { get; set; }
//public decimal? total6 { get; set; } public decimal? total6 { get; set; }
public decimal? room6 { get; set; } public decimal? room6 { get; set; }
//public decimal? male7 { get; set; } public decimal? male7 { get; set; }
//public decimal? female7 { get; set; } public decimal? female7 { get; set; }
// public decimal? total7 { get; set; } public decimal? total7 { get; set; }
//public decimal? room7 { get; set; } public decimal? room7 { get; set; }
} }
} }

View File

@@ -0,0 +1,827 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="02/28/2023 15:00:51" ReportInfo.CreatorVersion="2022.1.0.0">
<ScriptText>using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
using System.Drawing;
using System.Data;
using FastReport;
using FastReport.Data;
using FastReport.Dialog;
using FastReport.Barcode;
using FastReport.Table;
using FastReport.Utils;
namespace FastReport
{
public class ReportScript
{
private void Data1_BeforePrint(object sender, EventArgs e)
{
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;1&quot; )
Data1.FillColor = Color.Blue;
Cell110.Font = new Font(&quot;TH Sarabun New&quot;, 11, FontStyle.Bold);
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;2&quot; )
Data1.FillColor = Color.Yellow;
Cell110.Font = new Font(&quot;TH Sarabun New&quot;, 11, FontStyle.Bold);
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;3&quot; )
Data1.FillColor = Color.LightGreen;
Cell110.Font = new Font(&quot;TH Sarabun New&quot;, 11, FontStyle.Underline);
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;4&quot; )
Data1.FillColor = Color.LightSteelBlue;
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;5&quot; )
Data1.FillColor = Color.Gainsboro;
Cell110.Font = new Font(&quot;TH Sarabun New&quot;, 11, FontStyle.Bold);
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;6&quot; )
Data1.FillColor = Color.White;
}
private void Data2_BeforePrint(object sender, EventArgs e)
{
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;1.1&quot; )
Data2.FillColor = Color.White;
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;3.1&quot; )
Data2.FillColor = Color.White;
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;4.1&quot; )
Data2.FillColor = Color.White;
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;4.2&quot; )
Data2.FillColor = Color.White;
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;5.1&quot; )
Data2.FillColor = Color.White;
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;0&quot; )
Data2.FillColor = Color.White;
}
}
}
</ScriptText>
<Dictionary>
<BusinessObjectDataSource Name="student_totalcampus" ReferenceName="student_totalcampus" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/>
<Column Name="academic_semester_name_th" DataType="System.String"/>
<Column Name="admit_year1" DataType="System.String"/>
<Column Name="admit_year2" DataType="System.String"/>
<Column Name="admit_year3" DataType="System.String"/>
<Column Name="admit_year4" DataType="System.String"/>
<Column Name="admit_year5" DataType="System.String"/>
<BusinessObjectDataSource Name="header_data" DataType="null" Enabled="true">
<Column Name="filter" DataType="System.String"/>
<Column Name="header_name" DataType="System.String"/>
<Column Name="male1" DataType="System.Decimal"/>
<Column Name="female1" DataType="System.Decimal"/>
<Column Name="room1" DataType="System.Decimal"/>
<Column Name="male2" DataType="System.Decimal"/>
<Column Name="female2" DataType="System.Decimal"/>
<Column Name="room2" DataType="System.Decimal"/>
<Column Name="male3" DataType="System.Decimal"/>
<Column Name="female3" DataType="System.Decimal"/>
<Column Name="room3" DataType="System.Decimal"/>
<Column Name="male4" DataType="System.Decimal"/>
<Column Name="female4" DataType="System.Decimal"/>
<Column Name="room4" DataType="System.Decimal"/>
<Column Name="male5" DataType="System.Decimal"/>
<Column Name="female5" DataType="System.Decimal"/>
<Column Name="room5" DataType="System.Decimal"/>
<Column Name="male6" DataType="System.Decimal"/>
<Column Name="female6" DataType="System.Decimal"/>
<Column Name="room6" DataType="System.Decimal"/>
<Column Name="male7" DataType="System.Decimal"/>
<Column Name="female7" DataType="System.Decimal"/>
<Column Name="room7" DataType="System.Decimal"/>
<Column Name="total7" DataType="System.Decimal"/>
<Column Name="total6" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="name" DataType="System.String"/>
<Column Name="male1" DataType="System.Decimal"/>
<Column Name="female1" DataType="System.Decimal"/>
<Column Name="room1" DataType="System.Decimal"/>
<Column Name="male2" DataType="System.Decimal"/>
<Column Name="female2" DataType="System.Decimal"/>
<Column Name="room2" DataType="System.Decimal"/>
<Column Name="male3" DataType="System.Decimal"/>
<Column Name="female3" DataType="System.Decimal"/>
<Column Name="room3" DataType="System.Decimal"/>
<Column Name="male4" DataType="System.Decimal"/>
<Column Name="female4" DataType="System.Decimal"/>
<Column Name="room4" DataType="System.Decimal"/>
<Column Name="male5" DataType="System.Decimal"/>
<Column Name="female5" DataType="System.Decimal"/>
<Column Name="room5" DataType="System.Decimal"/>
<Column Name="male6" DataType="System.Decimal"/>
<Column Name="female6" DataType="System.Decimal"/>
<Column Name="room6" DataType="System.Decimal"/>
<Column Name="male7" DataType="System.Decimal"/>
<Column Name="female7" DataType="System.Decimal"/>
<Column Name="room7" DataType="System.Decimal"/>
<Column Name="total7" DataType="System.Decimal"/>
<Column Name="total6" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="520" PaperHeight="210" Watermark.Font="Arial, 60pt">
<PageHeaderBand Name="PageHeader1" Width="1890" Height="94.5">
<TableObject Name="Table1" Top="37.8" Width="1890" Height="56.7">
<TableColumn Name="Column1" Width="302.4"/>
<TableColumn Name="Column2" Width="226.8"/>
<TableColumn Name="Column3" Width="226.8"/>
<TableColumn Name="Column4" Width="1134"/>
<TableRow Name="Row1" Height="56.7">
<TableCell Name="Cell1" Border.Lines="All" Fill.Color="255, 224, 192" Text="คณะ/วิทยาลัย - สาขาวิชา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell2" Border.Lines="All" Fill.Color="255, 224, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text34" Left="170.1" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text12" Left="113.4" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text10" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text11" Left="56.7" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text4" Width="226.8" Height="28.35" Text="ชั้นปีที่ 1 [student_totalcampus.admit_year1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell3" Border.Lines="All" Fill.Color="255, 224, 192" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text36" Left="170.1" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text37" Left="113.4" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text38" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text39" Left="56.7" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text35" Width="226.8" Height="28.35" Text="ชั้นปีที่ 2 [student_totalcampus.admit_year2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell4" Border.Lines="All" Fill.Color="255, 224, 192" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text40" Left="170.1" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text42" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text43" Left="56.7" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text44" Width="226.8" Height="28.35" Text="ชั้นปีที่ 3 [student_totalcampus.admit_year3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text50" Left="396.9" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text52" Left="226.8" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text53" Left="283.5" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text54" Left="226.8" Width="226.8" Height="28.35" Border.Lines="Left" Text="ชั้นปีที่ 4 [student_totalcampus.admit_year4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text55" Left="623.7" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text57" Left="453.6" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text58" Left="510.3" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text59" Left="453.6" Width="226.8" Height="28.35" Border.Lines="Left" Text="ชั้นปีที่ 5 [student_totalcampus.admit_year5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text60" Left="850.5" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text62" Left="680.4" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text63" Left="737.1" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text64" Left="680.4" Width="226.8" Height="28.35" Border.Lines="Left" Text="นักศึกษาตกรุ่น/&gt;ชั้นปีที่ 5" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text65" Left="1077.3" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text67" Left="907.2" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text68" Left="963.9" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text69" Left="907.2" Width="226.8" Height="28.35" Border.Lines="Left" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text41" Left="113.4" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text51" Left="340.2" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text56" Left="567" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text61" Left="793.8" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text66" Left="1020.6" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
</TableRow>
</TableObject>
<TextObject Name="Text2" Width="1890" Height="28.35" Text="จำนวนนักศึกษาทั้งหมด ปีการศึกษา [student_totalcampus.academic_year_name_th] ภาคการศึกษาที่ [student_totalcampus.academic_semester_name_th] มหาวิทยาลัยเทคโนโลยีราชมงคลรัตนโกสินทร์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
<TextObject Name="Text45" Left="-9279.9" Top="-9421.65" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text46" Left="-9393.3" Top="-9421.65" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text47" Left="-9450" Top="-9421.65" Width="56.7" Height="28.35" Border.Lines="Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text48" Left="-9336.6" Top="-9421.65" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text49" Left="-9450" Top="-9450" Width="226.8" Height="28.35" Text="ชั้นปีที่ 2 [student_totalcampus.admit_year2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data1" Top="101.06" Width="1890" Height="28.35" BeforePrintEvent="Data1_BeforePrint" DataSource="header_data">
<TableObject Name="Table14" Width="1890" Height="28.35" Border.Lines="All">
<TableColumn Name="Column70" Width="302.4"/>
<TableColumn Name="Column71" Width="56.7"/>
<TableColumn Name="Column72" Width="56.7"/>
<TableColumn Name="Column73" Width="56.7"/>
<TableColumn Name="Column78" Width="56.7"/>
<TableColumn Name="Column79" Width="56.7"/>
<TableColumn Name="Column80" Width="56.7"/>
<TableColumn Name="Column88" Width="56.7"/>
<TableColumn Name="Column89" Width="56.7"/>
<TableColumn Name="Column90" Width="56.7"/>
<TableColumn Name="Column91" Width="56.7"/>
<TableColumn Name="Column92" Width="56.7"/>
<TableColumn Name="Column93" Width="56.7"/>
<TableColumn Name="Column94" Width="56.7"/>
<TableColumn Name="Column95" Width="56.7"/>
<TableColumn Name="Column96" Width="56.7"/>
<TableColumn Name="Column113" Width="56.7"/>
<TableColumn Name="Column114" Width="56.7"/>
<TableColumn Name="Column115" Width="56.7"/>
<TableColumn Name="Column116" Width="56.7"/>
<TableColumn Name="Column117" Width="56.7"/>
<TableColumn Name="Column118" Width="56.7"/>
<TableColumn Name="Column119" Width="56.7"/>
<TableColumn Name="Column120" Width="56.7"/>
<TableColumn Name="Column121" Width="56.7"/>
<TableColumn Name="Column122" Width="56.7"/>
<TableColumn Name="Column123" Width="56.7"/>
<TableColumn Name="Column124" Width="56.7"/>
<TableColumn Name="Column125" Width="56.7"/>
<TableRow Name="Row14" Height="28.35">
<TableCell Name="Cell110" BeforePrintEvent="Cell110_BeforePrint" Text="[student_totalcampus.header_data.header_name]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell111" Border.Lines="All" BeforePrintEvent="Cell111_BeforePrint" Text="[student_totalcampus.header_data.male1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell112" Border.Lines="All" BeforePrintEvent="Cell112_BeforePrint" Text="[student_totalcampus.header_data.female1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell113" Border.Lines="All" BeforePrintEvent="Cell113_BeforePrint" Text="[student_totalcampus.header_data.total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell118" Border.Lines="All" BeforePrintEvent="Cell118_BeforePrint" Text="[student_totalcampus.header_data.room1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell119" Border.Lines="All" BeforePrintEvent="Cell119_BeforePrint" Text="[student_totalcampus.header_data.male2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell120" Border.Lines="All" BeforePrintEvent="Cell120_BeforePrint" Text="[student_totalcampus.header_data.female2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell128" Border.Lines="All" BeforePrintEvent="Cell128_BeforePrint" Text="[student_totalcampus.header_data.total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell129" Border.Lines="All" Text="[student_totalcampus.header_data.room2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell130" Border.Lines="All" Text="[student_totalcampus.header_data.male3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell131" Border.Lines="All" Text="[student_totalcampus.header_data.female3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell132" Border.Lines="All" Text="[student_totalcampus.header_data.total3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell133" Border.Lines="All" Text="[student_totalcampus.header_data.room3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell134" Border.Lines="All" Text="[student_totalcampus.header_data.male4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell135" Border.Lines="All" Text="[student_totalcampus.header_data.female4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell136" Border.Lines="All" Text="[student_totalcampus.header_data.total4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell153" Border.Lines="All" Text="[student_totalcampus.header_data.room4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell154" Border.Lines="All" Text="[student_totalcampus.header_data.male5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell155" Border.Lines="All" Text="[student_totalcampus.header_data.female5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell156" Border.Lines="All" Text="[student_totalcampus.header_data.total5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell157" Border.Lines="All" Text="[student_totalcampus.header_data.room5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell158" Border.Lines="All" Text="[student_totalcampus.header_data.male6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell159" Border.Lines="All" Text="[student_totalcampus.header_data.female6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell160" Border.Lines="All" Text="[student_totalcampus.header_data.total6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell161" Border.Lines="All" Text="[student_totalcampus.header_data.room6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell162" Border.Lines="All" Text="[student_totalcampus.header_data.male7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell163" Border.Lines="All" Text="[student_totalcampus.header_data.female7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell164" Border.Lines="All" Text="[student_totalcampus.header_data.total7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell165" Border.Lines="All" Text="[student_totalcampus.header_data.room7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
<DataBand Name="Data2" Top="135.96" Width="1890" Height="28.35" BeforePrintEvent="Data2_BeforePrint" AfterPrintEvent="Data2_AfterPrint" DataSource="data">
<TableObject Name="Table15" Width="1890" Height="28.35" Border.Lines="All">
<TableColumn Name="Column97" Width="28.35"/>
<TableColumn Name="Column98" Width="274.05"/>
<TableColumn Name="Column99" Width="56.7"/>
<TableColumn Name="Column100" Width="56.7"/>
<TableColumn Name="Column101" Width="56.7"/>
<TableColumn Name="Column102" Width="56.7"/>
<TableColumn Name="Column103" Width="56.7"/>
<TableColumn Name="Column104" Width="56.7"/>
<TableColumn Name="Column105" Width="56.7"/>
<TableColumn Name="Column106" Width="56.7"/>
<TableColumn Name="Column107" Width="56.7"/>
<TableColumn Name="Column108" Width="56.7"/>
<TableColumn Name="Column109" Width="56.7"/>
<TableColumn Name="Column110" Width="56.7"/>
<TableColumn Name="Column111" Width="56.7"/>
<TableColumn Name="Column112" Width="56.7"/>
<TableColumn Name="Column126" Width="56.7"/>
<TableColumn Name="Column127" Width="56.7"/>
<TableColumn Name="Column128" Width="56.7"/>
<TableColumn Name="Column129" Width="56.7"/>
<TableColumn Name="Column130" Width="56.7"/>
<TableColumn Name="Column131" Width="56.7"/>
<TableColumn Name="Column132" Width="56.7"/>
<TableColumn Name="Column133" Width="56.7"/>
<TableColumn Name="Column134" Width="56.7"/>
<TableColumn Name="Column135" Width="56.7"/>
<TableColumn Name="Column136" Width="56.7"/>
<TableColumn Name="Column137" Width="56.7"/>
<TableColumn Name="Column138" Width="56.7"/>
<TableColumn Name="Column139" Width="56.7"/>
<TableRow Name="Row15" Height="28.35">
<TableCell Name="Cell137" BeforePrintEvent="Cell137_BeforePrint" AfterPrintEvent="Cell137_AfterPrint" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;0&quot;" TextFill.Color="White" Font="Arial, 10pt"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" TextFill.Color="White" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell138" Border.Lines="All" Text="[student_totalcampus.header_data.data.name]" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell139" Border.Lines="All" Text="[student_totalcampus.header_data.data.male1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell140" Border.Lines="All" Text="[student_totalcampus.header_data.data.female1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell141" Border.Lines="All" Text="[student_totalcampus.header_data.data.total1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell142" Border.Lines="All" Text="[student_totalcampus.header_data.data.room1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell143" Border.Lines="All" Text="[student_totalcampus.header_data.data.male2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell144" Border.Lines="All" Text="[student_totalcampus.header_data.data.female2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell145" Border.Lines="All" Text="[student_totalcampus.header_data.data.total2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell146" Border.Lines="All" Text="[student_totalcampus.header_data.data.room2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell147" Border.Lines="All" Text="[student_totalcampus.header_data.data.male3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell148" Border.Lines="All" Text="[student_totalcampus.header_data.data.female3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell149" Border.Lines="All" Text="[student_totalcampus.header_data.data.total3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell150" Border.Lines="All" Text="[student_totalcampus.header_data.data.room3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell151" Border.Lines="All" Text="[student_totalcampus.header_data.data.male4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell152" Border.Lines="All" Text="[student_totalcampus.header_data.data.female4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell166" Border.Lines="All" Text="[student_totalcampus.header_data.data.total4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell167" Border.Lines="All" Text="[student_totalcampus.header_data.data.room4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell168" Border.Lines="All" Text="[student_totalcampus.header_data.data.male5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell169" Border.Lines="All" Text="[student_totalcampus.header_data.data.female5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell170" Border.Lines="All" Text="[student_totalcampus.header_data.data.total5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell171" Border.Lines="All" Text="[student_totalcampus.header_data.data.room5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell172" Border.Lines="All" Text="[student_totalcampus.header_data.data.male6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell173" Border.Lines="All" Text="[student_totalcampus.header_data.data.female6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell174" Border.Lines="All" Text="[student_totalcampus.header_data.data.total6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell175" Border.Lines="All" Text="[student_totalcampus.header_data.data.room6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell176" Border.Lines="All" Text="[student_totalcampus.header_data.data.male7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell177" Border.Lines="All" Text="[student_totalcampus.header_data.data.female7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell178" Border.Lines="All" Text="[student_totalcampus.header_data.data.total7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell179" Border.Lines="All" Text="[student_totalcampus.header_data.data.room7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4.2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
</ReportPage>
</Report>

View File

@@ -0,0 +1,838 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="02/28/2023 15:06:00" ReportInfo.CreatorVersion="2022.1.0.0">
<ScriptText>using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;
using System.Drawing;
using System.Data;
using FastReport;
using FastReport.Data;
using FastReport.Dialog;
using FastReport.Barcode;
using FastReport.Table;
using FastReport.Utils;
namespace FastReport
{
public class ReportScript
{
private void Data1_BeforePrint(object sender, EventArgs e)
{
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;1&quot; )
Data1.FillColor = Color.Blue;
Cell110.Font = new Font(&quot;TH Sarabun New&quot;, 11, FontStyle.Bold);
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;2&quot; )
Data1.FillColor = Color.Yellow;
Cell110.Font = new Font(&quot;TH Sarabun New&quot;, 11, FontStyle.Bold);
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;3&quot; )
Data1.FillColor = Color.White;
Cell110.Font = new Font(&quot;TH Sarabun New&quot;, 11, FontStyle.Underline);
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;4&quot; )
Data1.FillColor = Color.White;
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;5&quot; )
Data1.FillColor = Color.White;
Cell110.Font = new Font(&quot;TH Sarabun New&quot;, 11, FontStyle.Bold);
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;6&quot; )
Data1.FillColor = Color.LightGreen;
Cell110.Font = new Font(&quot;TH Sarabun New&quot;, 11, FontStyle.Bold);
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;7&quot; )
Data1.FillColor = Color.LightSteelBlue;
Cell110.Font = new Font(&quot;TH Sarabun New&quot;, 11, FontStyle.Bold);
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;8&quot; )
Data1.FillColor = Color.Gainsboro;
Cell110.Font = new Font(&quot;TH Sarabun New&quot;, 11, FontStyle.Bold);
}
private void Data2_BeforePrint(object sender, EventArgs e)
{
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;6.1&quot; )
Data2.FillColor = Color.White;
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;7.1&quot; )
Data2.FillColor = Color.White;
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;8.1&quot; )
Data2.FillColor = Color.White;
if (((String)Report.GetColumnValue(&quot;student_totalcampus.header_data.filter&quot;)) == &quot;0&quot; )
Data2.FillColor = Color.White;
}
}
}
</ScriptText>
<Dictionary>
<BusinessObjectDataSource Name="student_totalcampus" ReferenceName="student_totalcampus" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/>
<Column Name="academic_semester_name_th" DataType="System.String"/>
<Column Name="admit_year1" DataType="System.String"/>
<Column Name="admit_year2" DataType="System.String"/>
<Column Name="admit_year3" DataType="System.String"/>
<Column Name="admit_year4" DataType="System.String"/>
<Column Name="admit_year5" DataType="System.String"/>
<BusinessObjectDataSource Name="header_data" DataType="null" Enabled="true">
<Column Name="filter" DataType="System.String"/>
<Column Name="header_name" DataType="System.String"/>
<Column Name="male1" DataType="System.Decimal"/>
<Column Name="female1" DataType="System.Decimal"/>
<Column Name="room1" DataType="System.Decimal"/>
<Column Name="male2" DataType="System.Decimal"/>
<Column Name="female2" DataType="System.Decimal"/>
<Column Name="room2" DataType="System.Decimal"/>
<Column Name="male3" DataType="System.Decimal"/>
<Column Name="female3" DataType="System.Decimal"/>
<Column Name="room3" DataType="System.Decimal"/>
<Column Name="male4" DataType="System.Decimal"/>
<Column Name="female4" DataType="System.Decimal"/>
<Column Name="room4" DataType="System.Decimal"/>
<Column Name="male5" DataType="System.Decimal"/>
<Column Name="female5" DataType="System.Decimal"/>
<Column Name="room5" DataType="System.Decimal"/>
<Column Name="male6" DataType="System.Decimal"/>
<Column Name="female6" DataType="System.Decimal"/>
<Column Name="room6" DataType="System.Decimal"/>
<Column Name="male7" DataType="System.Decimal"/>
<Column Name="female7" DataType="System.Decimal"/>
<Column Name="room7" DataType="System.Decimal"/>
<Column Name="total7" DataType="System.Decimal"/>
<Column Name="total6" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="name" DataType="System.String"/>
<Column Name="male1" DataType="System.Decimal"/>
<Column Name="female1" DataType="System.Decimal"/>
<Column Name="room1" DataType="System.Decimal"/>
<Column Name="male2" DataType="System.Decimal"/>
<Column Name="female2" DataType="System.Decimal"/>
<Column Name="room2" DataType="System.Decimal"/>
<Column Name="male3" DataType="System.Decimal"/>
<Column Name="female3" DataType="System.Decimal"/>
<Column Name="room3" DataType="System.Decimal"/>
<Column Name="male4" DataType="System.Decimal"/>
<Column Name="female4" DataType="System.Decimal"/>
<Column Name="room4" DataType="System.Decimal"/>
<Column Name="male5" DataType="System.Decimal"/>
<Column Name="female5" DataType="System.Decimal"/>
<Column Name="room5" DataType="System.Decimal"/>
<Column Name="male6" DataType="System.Decimal"/>
<Column Name="female6" DataType="System.Decimal"/>
<Column Name="room6" DataType="System.Decimal"/>
<Column Name="male7" DataType="System.Decimal"/>
<Column Name="female7" DataType="System.Decimal"/>
<Column Name="room7" DataType="System.Decimal"/>
<Column Name="total7" DataType="System.Decimal"/>
<Column Name="total6" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="520" PaperHeight="210" Watermark.Font="Arial, 60pt">
<PageHeaderBand Name="PageHeader1" Width="1890" Height="94.5">
<TableObject Name="Table1" Top="37.8" Width="1890" Height="56.7">
<TableColumn Name="Column1" Width="302.4"/>
<TableColumn Name="Column2" Width="226.8"/>
<TableColumn Name="Column3" Width="226.8"/>
<TableColumn Name="Column4" Width="1134"/>
<TableRow Name="Row1" Height="56.7">
<TableCell Name="Cell1" Border.Lines="All" Fill.Color="255, 224, 192" Text="คณะ/วิทยาลัย - สาขาวิชา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell2" Border.Lines="All" Fill.Color="255, 224, 192" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text34" Left="170.1" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text12" Left="113.4" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text10" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text11" Left="56.7" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text4" Width="226.8" Height="28.35" Text="ชั้นปีที่ 1 [student_totalcampus.admit_year1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell3" Border.Lines="All" Fill.Color="255, 224, 192" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text36" Left="170.1" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text37" Left="113.4" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text38" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text39" Left="56.7" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text35" Width="226.8" Height="28.35" Text="ชั้นปีที่ 2 [student_totalcampus.admit_year2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell4" Border.Lines="All" Fill.Color="255, 224, 192" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text40" Left="170.1" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text42" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text43" Left="56.7" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text44" Width="226.8" Height="28.35" Text="ชั้นปีที่ 3 [student_totalcampus.admit_year3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text50" Left="396.9" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text52" Left="226.8" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text53" Left="283.5" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text54" Left="226.8" Width="226.8" Height="28.35" Border.Lines="Left" Text="ชั้นปีที่ 4 [student_totalcampus.admit_year4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text55" Left="623.7" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text57" Left="453.6" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text58" Left="510.3" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text59" Left="453.6" Width="226.8" Height="28.35" Border.Lines="Left" Text="ชั้นปีที่ 5 [student_totalcampus.admit_year5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text60" Left="850.5" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text62" Left="680.4" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text63" Left="737.1" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text64" Left="680.4" Width="226.8" Height="28.35" Border.Lines="Left" Text="นักศึกษาตกรุ่น/&gt;ชั้นปีที่ 5" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text65" Left="1077.3" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text67" Left="907.2" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text68" Left="963.9" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text69" Left="907.2" Width="226.8" Height="28.35" Border.Lines="Left" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text41" Left="113.4" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text51" Left="340.2" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text56" Left="567" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text61" Left="793.8" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text66" Left="1020.6" Top="28.35" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
</TableRow>
</TableObject>
<TextObject Name="Text2" Width="1890" Height="28.35" Text="จำนวนนักศึกษาทั้งหมด ปีการศึกษา [student_totalcampus.academic_year_name_th] ภาคการศึกษาที่ [student_totalcampus.academic_semester_name_th] มหาวิทยาลัยเทคโนโลยีราชมงคลรัตนโกสินทร์" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
<TextObject Name="Text45" Left="-9279.9" Top="-9421.65" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="จำนวนห้อง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 11pt, style=Bold"/>
<TextObject Name="Text46" Left="-9393.3" Top="-9421.65" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text47" Left="-9450" Top="-9421.65" Width="56.7" Height="28.35" Border.Lines="Top" Text="ชาย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text48" Left="-9336.6" Top="-9421.65" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="หญิง" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text49" Left="-9450" Top="-9450" Width="226.8" Height="28.35" Text="ชั้นปีที่ 2 [student_totalcampus.admit_year2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</PageHeaderBand>
<DataBand Name="Data1" Top="101.06" Width="1890" Height="28.35" BeforePrintEvent="Data1_BeforePrint" DataSource="header_data">
<TableObject Name="Table14" Width="1890" Height="28.35" Border.Lines="All">
<TableColumn Name="Column70" Width="302.4"/>
<TableColumn Name="Column71" Width="56.7"/>
<TableColumn Name="Column72" Width="56.7"/>
<TableColumn Name="Column73" Width="56.7"/>
<TableColumn Name="Column78" Width="56.7"/>
<TableColumn Name="Column79" Width="56.7"/>
<TableColumn Name="Column80" Width="56.7"/>
<TableColumn Name="Column88" Width="56.7"/>
<TableColumn Name="Column89" Width="56.7"/>
<TableColumn Name="Column90" Width="56.7"/>
<TableColumn Name="Column91" Width="56.7"/>
<TableColumn Name="Column92" Width="56.7"/>
<TableColumn Name="Column93" Width="56.7"/>
<TableColumn Name="Column94" Width="56.7"/>
<TableColumn Name="Column95" Width="56.7"/>
<TableColumn Name="Column96" Width="56.7"/>
<TableColumn Name="Column113" Width="56.7"/>
<TableColumn Name="Column114" Width="56.7"/>
<TableColumn Name="Column115" Width="56.7"/>
<TableColumn Name="Column116" Width="56.7"/>
<TableColumn Name="Column117" Width="56.7"/>
<TableColumn Name="Column118" Width="56.7"/>
<TableColumn Name="Column119" Width="56.7"/>
<TableColumn Name="Column120" Width="56.7"/>
<TableColumn Name="Column121" Width="56.7"/>
<TableColumn Name="Column122" Width="56.7"/>
<TableColumn Name="Column123" Width="56.7"/>
<TableColumn Name="Column124" Width="56.7"/>
<TableColumn Name="Column125" Width="56.7"/>
<TableRow Name="Row14" Height="28.35">
<TableCell Name="Cell110" BeforePrintEvent="Cell110_BeforePrint" Text="[student_totalcampus.header_data.header_name]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell111" Border.Lines="All" BeforePrintEvent="Cell111_BeforePrint" Text="[student_totalcampus.header_data.male1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell112" Border.Lines="All" BeforePrintEvent="Cell112_BeforePrint" Text="[student_totalcampus.header_data.female1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell113" Border.Lines="All" BeforePrintEvent="Cell113_BeforePrint" Text="[student_totalcampus.header_data.total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell118" Border.Lines="All" BeforePrintEvent="Cell118_BeforePrint" Text="[student_totalcampus.header_data.room1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell119" Border.Lines="All" BeforePrintEvent="Cell119_BeforePrint" Text="[student_totalcampus.header_data.male2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell120" Border.Lines="All" BeforePrintEvent="Cell120_BeforePrint" Text="[student_totalcampus.header_data.female2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell128" Border.Lines="All" BeforePrintEvent="Cell128_BeforePrint" Text="[student_totalcampus.header_data.total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell129" Border.Lines="All" Text="[student_totalcampus.header_data.room2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell130" Border.Lines="All" Text="[student_totalcampus.header_data.male3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell131" Border.Lines="All" Text="[student_totalcampus.header_data.female3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell132" Border.Lines="All" Text="[student_totalcampus.header_data.total3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell133" Border.Lines="All" Text="[student_totalcampus.header_data.room3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell134" Border.Lines="All" Text="[student_totalcampus.header_data.male4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell135" Border.Lines="All" Text="[student_totalcampus.header_data.female4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell136" Border.Lines="All" Text="[student_totalcampus.header_data.total4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell153" Border.Lines="All" Text="[student_totalcampus.header_data.room4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell154" Border.Lines="All" Text="[student_totalcampus.header_data.male5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell155" Border.Lines="All" Text="[student_totalcampus.header_data.female5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell156" Border.Lines="All" Text="[student_totalcampus.header_data.total5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell157" Border.Lines="All" Text="[student_totalcampus.header_data.room5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell158" Border.Lines="All" Text="[student_totalcampus.header_data.male6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell159" Border.Lines="All" Text="[student_totalcampus.header_data.female6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell160" Border.Lines="All" Text="[student_totalcampus.header_data.total6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell161" Border.Lines="All" Text="[student_totalcampus.header_data.room6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell162" Border.Lines="All" Text="[student_totalcampus.header_data.male7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell163" Border.Lines="All" Text="[student_totalcampus.header_data.female7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell164" Border.Lines="All" Text="[student_totalcampus.header_data.total7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
<TableCell Name="Cell165" Border.Lines="All" Text="[student_totalcampus.header_data.room7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;3&quot;" Font="TH Sarabun New, 11.25pt, style=Underline" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;1&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;2&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;6&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;4&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;5&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;7&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;8&quot;" Font="TH Sarabun New, 11.25pt, style=Bold" ApplyTextFill="false" ApplyFont="true"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
<DataBand Name="Data2" Top="135.96" Width="1890" Height="28.35" BeforePrintEvent="Data2_BeforePrint" AfterPrintEvent="Data2_AfterPrint" DataSource="data">
<TableObject Name="Table15" Width="1890" Height="28.35" Border.Lines="All">
<TableColumn Name="Column97" Width="28.35"/>
<TableColumn Name="Column98" Width="274.05"/>
<TableColumn Name="Column99" Width="56.7"/>
<TableColumn Name="Column100" Width="56.7"/>
<TableColumn Name="Column101" Width="56.7"/>
<TableColumn Name="Column102" Width="56.7"/>
<TableColumn Name="Column103" Width="56.7"/>
<TableColumn Name="Column104" Width="56.7"/>
<TableColumn Name="Column105" Width="56.7"/>
<TableColumn Name="Column106" Width="56.7"/>
<TableColumn Name="Column107" Width="56.7"/>
<TableColumn Name="Column108" Width="56.7"/>
<TableColumn Name="Column109" Width="56.7"/>
<TableColumn Name="Column110" Width="56.7"/>
<TableColumn Name="Column111" Width="56.7"/>
<TableColumn Name="Column112" Width="56.7"/>
<TableColumn Name="Column126" Width="56.7"/>
<TableColumn Name="Column127" Width="56.7"/>
<TableColumn Name="Column128" Width="56.7"/>
<TableColumn Name="Column129" Width="56.7"/>
<TableColumn Name="Column130" Width="56.7"/>
<TableColumn Name="Column131" Width="56.7"/>
<TableColumn Name="Column132" Width="56.7"/>
<TableColumn Name="Column133" Width="56.7"/>
<TableColumn Name="Column134" Width="56.7"/>
<TableColumn Name="Column135" Width="56.7"/>
<TableColumn Name="Column136" Width="56.7"/>
<TableColumn Name="Column137" Width="56.7"/>
<TableColumn Name="Column138" Width="56.7"/>
<TableColumn Name="Column139" Width="56.7"/>
<TableRow Name="Row15" Height="28.35">
<TableCell Name="Cell137" BeforePrintEvent="Cell137_BeforePrint" AfterPrintEvent="Cell137_AfterPrint" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="[student_totalcampus.header_data.filter] == &quot;0&quot;" TextFill.Color="White" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell138" Border.Lines="All" Text="[student_totalcampus.header_data.data.name]" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell139" Border.Lines="All" Text="[student_totalcampus.header_data.data.male1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell140" Border.Lines="All" Text="[student_totalcampus.header_data.data.female1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell141" Border.Lines="All" Text="[student_totalcampus.header_data.data.total1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell142" Border.Lines="All" Text="[student_totalcampus.header_data.data.room1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell143" Border.Lines="All" Text="[student_totalcampus.header_data.data.male2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell144" Border.Lines="All" Text="[student_totalcampus.header_data.data.female2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell145" Border.Lines="All" Text="[student_totalcampus.header_data.data.total2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell146" Border.Lines="All" Text="[student_totalcampus.header_data.data.room2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell147" Border.Lines="All" Text="[student_totalcampus.header_data.data.male3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell148" Border.Lines="All" Text="[student_totalcampus.header_data.data.female3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell149" Border.Lines="All" Text="[student_totalcampus.header_data.data.total3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell150" Border.Lines="All" Text="[student_totalcampus.header_data.data.room3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell151" Border.Lines="All" Text="[student_totalcampus.header_data.data.male4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell152" Border.Lines="All" Text="[student_totalcampus.header_data.data.female4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell166" Border.Lines="All" Text="[student_totalcampus.header_data.data.total4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell167" Border.Lines="All" Text="[student_totalcampus.header_data.data.room4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell168" Border.Lines="All" Text="[student_totalcampus.header_data.data.male5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell169" Border.Lines="All" Text="[student_totalcampus.header_data.data.female5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell170" Border.Lines="All" Text="[student_totalcampus.header_data.data.total5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell171" Border.Lines="All" Text="[student_totalcampus.header_data.data.room5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell172" Border.Lines="All" Text="[student_totalcampus.header_data.data.male6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell173" Border.Lines="All" Text="[student_totalcampus.header_data.data.female6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell174" Border.Lines="All" Text="[student_totalcampus.header_data.data.total6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell175" Border.Lines="All" Text="[student_totalcampus.header_data.data.room6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell176" Border.Lines="All" Text="[student_totalcampus.header_data.data.male7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell177" Border.Lines="All" Text="[student_totalcampus.header_data.data.female7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell178" Border.Lines="All" Text="[student_totalcampus.header_data.data.total7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
<TableCell Name="Cell179" Border.Lines="All" Text="[student_totalcampus.header_data.data.room7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
</TableCell>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
</ReportPage>
</Report>