This commit is contained in:
kamonwan taengsuk
2023-01-27 15:05:49 +07:00
parent 4ef21984bb
commit 9253033d96
13 changed files with 1998 additions and 47 deletions

View File

@@ -0,0 +1,447 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using FastReport;
using FastReport.Export.Csv;
using FastReport.Export.Mht;
using FastReport.Export.OoXML;
using FastReport.Export.Pdf;
using Microsoft.AspNetCore.Mvc;
using rmutr_report.Models;
using rmutr_report.Models.Hr;
using Swashbuckle.AspNetCore.Annotations;
namespace rmutr_report.Controllers
{
[SwaggerTag("สำหรับรายงานนักศึกษาเข้าใหม่หลักสูตรบัณฑิตศึกษา")]
public class StdNewsGraduateProgram : Controller
{
readonly Setting _setting;
public StdNewsGraduateProgram(Setting setting)
{
this._setting = setting;
}
[HttpPost, Route("reports/student_news_graduate_program/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetStdNews1Report([FromRoute] string type,
[FromBody] student_news_graduate_program _student_news_faculty)
{
var std = _student_news_faculty.data;
var a1 = _student_news_faculty.data.Where(d => d.ph_degree == d.ph_degree)
.Sum(o => o.ph_degree);
var a2 = _student_news_faculty.data.Where(d => d.ph_master_degree == d.ph_master_degree)
.Sum(o => o.ph_master_degree);
var a3 = _student_news_faculty.data.Where(d => d.master_degree == d.master_degree)
.Sum(o => o.master_degree);
foreach (var data in std)
{
data.total1 = a1;
data.total2 = a2;
data.total3 = a3;
var total = data.total1 + data.total2 + data.total3;
var total2 = data.ph_degree + data.ph_master_degree + data.master_degree;
var total3 = (total2 * 100) / total;
if (data.ph_degree != 0 || data.ph_master_degree != 0 || data.master_degree != 0)
{
data.sum_degree = data.ph_degree + data.ph_master_degree + data.master_degree;
//data.sum_percentage = (total2 * 100) / total;
}
data.sum_percentage = (total2 * 100) / total;
data.total4 = a1 + a2 + a3;
data.total5 = total3;
}
var student_news_facultys = new List<student_news_graduate_program>() {_student_news_faculty};
Report report = new Report();
report.Load(_setting.report_path + "student_news_graduate_program.frx");
report.RegisterData(student_news_facultys, "student_news_graduate_program");
report.Prepare();
MemoryStream stream = new MemoryStream();
switch (type)
{
case "pdf":
PDFExport pdf = new PDFExport();
report.Export(pdf, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/pdf");
case "xls":
case "xlsx":
Excel2007Export excel = new Excel2007Export();
report.Export(excel, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/vnd.ms-excel");
break;
case "mht":
MHTExport mht = new MHTExport();
report.Export(mht, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "multipart/related");
break;
case "csv":
CSVExport csv = new CSVExport();
report.Export(csv, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "text/csv");
break;
}
return Ok();
}
[HttpPost, Route("reports/student_graduate_program_area/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetStdNews2Report([FromRoute] string type,
[FromBody] student_graduate_program_area _student_news_faculty)
{
var std = _student_news_faculty.data;
var a1 = _student_news_faculty.data.Where(d => d.ph_degree_science == d.ph_degree_science)
.Sum(o => o.ph_degree_science);
var a2 = _student_news_faculty.data.Where(d => d.ph_degree_social == d.ph_degree_social)
.Sum(o => o.ph_degree_social);
var a3 = _student_news_faculty.data.Where(d => d.ph_master_science == d.ph_master_science)
.Sum(o => o.ph_master_science);
var a4 = _student_news_faculty.data.Where(d => d.ph_master_social == d.ph_master_social)
.Sum(o => o.ph_master_social);
var a5 = _student_news_faculty.data.Where(d => d.master_science == d.master_science)
.Sum(o => o.master_science);
var a6 = _student_news_faculty.data.Where(d => d.master_social == d.master_social)
.Sum(o => o.master_social);
foreach (var data in std)
{
var s1 = data.ph_degree_science + data.master_science;
var s2 = data.ph_degree_social + data.master_social;
var s3 = data.ph_degree_science + data.master_science;
var s4 = data.ph_degree_science + data.master_science + data.ph_degree_social + data.master_social;
data.ph_total = data.ph_degree_science + data.ph_degree_social;
data.ph_master_total = data.ph_master_science + data.ph_master_social;
data.master_total = data.master_science + data.master_social;
data.total1 = a1;
data.total2 = a2;
data.total3 = a1 + a2;
data.total4 = a3;
data.total5 = a4;
data.total6 = a3 + a4;
data.total7 = a5;
data.total8 = a6;
data.total9 = a5 + a6;
data.sum_degree_science = data.ph_degree_science + data.master_science;
data.sum_degree_social = data.ph_degree_social + data.master_social;
data.total10 = data.total1 + data.total7;
data.total11 = data.total2 + data.total8;
data.sum_degree = s4;
data.total12 = data.total10 + data.total11;
//data.sum_degree = (data.ph_degree_science + data.master_science)+(data.ph_degree_social + data.master_social);
data.sum_percentage_science = ((data.ph_degree_science + data.master_science) * 100) /
(data.sum_degree_science + data.sum_degree_social);
data.sum_percentage_social = ((data.ph_degree_social + data.master_social) * 100) /
(data.sum_degree_science + data.sum_degree_social);
data.total13 = (data.total10 * 100) / data.total12;
data.total14 = (data.total11 * 100) / data.total12;
}
var student_news_facultys = new List<student_graduate_program_area>() {_student_news_faculty};
Report report = new Report();
report.Load(_setting.report_path + "student_graduate_program_area.frx");
report.RegisterData(student_news_facultys, "student_graduate_program_area");
report.Prepare();
MemoryStream stream = new MemoryStream();
switch (type)
{
case "pdf":
PDFExport pdf = new PDFExport();
report.Export(pdf, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/pdf");
case "xls":
case "xlsx":
Excel2007Export excel = new Excel2007Export();
report.Export(excel, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/vnd.ms-excel");
break;
case "mht":
MHTExport mht = new MHTExport();
report.Export(mht, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "multipart/related");
break;
case "csv":
CSVExport csv = new CSVExport();
report.Export(csv, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "text/csv");
break;
}
return Ok();
}
[HttpPost, Route("reports/student_graduate_program_faculty/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetStdNews3Report([FromRoute] string type,
[FromBody] student_graduate_program_faculty _student_news_faculty)
{
var std = _student_news_faculty.data;
var a1 = _student_news_faculty.data.Where(d => d.ph_degree_science == d.ph_degree_science)
.Sum(o => o.ph_degree_science);
var a2 = _student_news_faculty.data.Where(d => d.ph_master_degree_science == d.ph_master_degree_science)
.Sum(o => o.ph_master_degree_science);
var a3 = _student_news_faculty.data.Where(d => d.master_science == d.master_science)
.Sum(o => o.master_science);
var a4 = _student_news_faculty.data.Where(d => d.sum_degree_ph == d.sum_degree_ph)
.Sum(o => o.sum_degree_ph);
var a5 = _student_news_faculty.data.Where(d => d.ph_degree_social == d.ph_degree_social)
.Sum(o => o.ph_degree_social);
var a6 = _student_news_faculty.data.Where(d => d.ph_master_degree_social == d.ph_master_degree_social)
.Sum(o => o.ph_master_degree_social);
var a7 = _student_news_faculty.data.Where(d => d.master_social == d.master_social)
.Sum(o => o.master_social);
var a8 = _student_news_faculty.data.Where(d => d.social_total == d.social_total)
.Sum(o => o.social_total);
foreach (var data in std)
{
var s1 = data.science_total +data.social_total;
data.total1 = a1;
data.total2 = a2;
data.total3 = a3;
data.science_total = data.ph_degree_science + data.ph_master_degree_science + data.master_science;
data.total4 = data.total1 + data.total2 + data.total3;
data.total5 = a5;
data.total6 = a6;
data.total7 = a7;
data.social_total = data.ph_degree_social + data.ph_master_degree_social + data.master_social;
data.total8 = data.total5 + data.total6 + data.total7;
data.sum_degree_ph = data.ph_degree_science + data.ph_degree_social;
data.sum_degree_ph_master = data.ph_master_degree_science + data.ph_master_degree_social;
data.sum_degree_master = data.master_science + data.master_social;
data.sum_degree = data.sum_degree_ph + data.sum_degree_ph_master+data.sum_degree_master;
data.total9 = data.total1 + data.total5;
data.total10 = data.total2 + data.total6;
data.total11 = data.total3 + data.total7;
data.total12 = data.total9 + data.total10+data.total11;
data.sum_percentage_science = ((data.ph_degree_science + data.ph_master_degree_science + data.master_science) * 100) /
(data.science_total +data.social_total);
data.sum_percentage_social = ((data.ph_degree_social + data.ph_master_degree_social + data.master_social) * 100) /
(data.science_total +data.social_total);
if (data.total4 != 0 && data.total12!= 0 )
{
data.total13 = (data.total4 * 100) / data.total12;
}
if (data.total8 != 0 && data.total12!= 0 )
{
data.total14 = (data.total8 * 100) / data.total12;
}
//data.total13 = (data.total4 * 100) / data.total12;
//data.total14 = (data.total8 * 100) / data.total12;
}
var student_news_facultys = new List<student_graduate_program_faculty>() {_student_news_faculty};
Report report = new Report();
report.Load(_setting.report_path + "student_graduate_program_faculty.frx");
report.RegisterData(student_news_facultys, "student_graduate_program_faculty");
report.Prepare();
MemoryStream stream = new MemoryStream();
switch (type)
{
case "pdf":
PDFExport pdf = new PDFExport();
report.Export(pdf, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/pdf");
case "xls":
case "xlsx":
Excel2007Export excel = new Excel2007Export();
report.Export(excel, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/vnd.ms-excel");
break;
case "mht":
MHTExport mht = new MHTExport();
report.Export(mht, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "multipart/related");
break;
case "csv":
CSVExport csv = new CSVExport();
report.Export(csv, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "text/csv");
break;
}
return Ok();
}
[HttpPost, Route("reports/student_graduate_program_year/{type}")]
[ApiExplorerSettings(GroupName = "reports")]
public IActionResult GetStdNews4Report([FromRoute] string type,
[FromBody] student_graduate_program_year _student_news_faculty)
{
var std = _student_news_faculty.data;
var a1 = _student_news_faculty.data.Where(d => d.ph_degree_science1 == d.ph_degree_science1)
.Sum(o => o.ph_degree_science1);
var a2 = _student_news_faculty.data.Where(d => d.ph_master_degree_science1 == d.ph_master_degree_science1)
.Sum(o => o.ph_master_degree_science1);
var a3 = _student_news_faculty.data.Where(d => d.master_science1 == d.master_science1)
.Sum(o => o.master_science1);
var a4 = _student_news_faculty.data.Where(d => d.ph_degree_social1 == d.ph_degree_social1)
.Sum(o => o.ph_degree_social1);
var a5 = _student_news_faculty.data.Where(d => d.ph_master_degree_social1 == d.ph_master_degree_social1)
.Sum(o => o.ph_master_degree_social1);
var a6 = _student_news_faculty.data.Where(d => d.master_social1 == d.master_social1)
.Sum(o => o.master_social1);
var a7 = _student_news_faculty.data.Where(d => d.ph_degree_science2 == d.ph_degree_science2)
.Sum(o => o.ph_degree_science2);
var a8 = _student_news_faculty.data.Where(d => d.ph_master_degree_science2 == d.ph_master_degree_science2)
.Sum(o => o.ph_master_degree_science2);
var a9 = _student_news_faculty.data.Where(d => d.master_science2 == d.master_science2)
.Sum(o => o.master_science2);
var a10 = _student_news_faculty.data.Where(d => d.ph_degree_social2 == d.ph_degree_social2)
.Sum(o => o.ph_degree_social2);
var a11 = _student_news_faculty.data.Where(d => d.ph_master_degree_social2 == d.ph_master_degree_social2)
.Sum(o => o.ph_master_degree_social2);
var a12 = _student_news_faculty.data.Where(d => d.master_social2 == d.master_social2)
.Sum(o => o.master_social2);
foreach (var data in std)
{
data.science_total1 = data.ph_degree_science1 + data.ph_master_degree_science1 + data.master_science1;
data.social_total1 = data.ph_degree_social1 + data.ph_master_degree_social1 + data.master_social1;
data.science_social_total1 = data.science_total1+ data.social_total1;
data.total1 = a1;
data.total2 = a2;
data.total3 = a3;
data.total4 = data.total1 + data.total2 + data.total3;
data.total5 = a4;
data.total6 = a5;
data.total7 = a6;
data.total8 = data.total5 + data.total6 + data.total7;
data.total9 = data.total4 + data.total8;
data.science_total2 = data.ph_degree_science2 + data.ph_master_degree_science2 + data.master_science2;
data.social_total2 = data.ph_degree_social2 + data.ph_master_degree_social2 + data.master_social2;
data.science_social_total2 = data.science_total2+ data.social_total2;
data.total10 = a7;
data.total11 = a8;
data.total12 = a9;
data.total13 = data.total10 + data.total11 + data.total12;
data.total14 = a10;
data.total15 = a11;
data.total16 = a12;
data.total17 = data.total14 + data.total15 + data.total16;
data.total18 = data.total13 + data.total17;
if (data.science_total2 != 0 && data.science_total1 != 0)
{
data.sum_percentage_science =
((data.science_total2 - data.science_total1) / data.science_total1) * 100;
}
if (data.science_total2 == 0)
{
data.sum_percentage_science = 0;
}
if (data.science_total1 == 0)
{
data.sum_percentage_science = 0;
}
if (data.social_total2 != 0 && data.social_total1 != 0 )
{
data.sum_percentage_social =((data.social_total2 - data.social_total1) / data.social_total1) * 100;
}
if (data.social_total2 == 0 )
{
data.sum_percentage_social = 0;
}
if (data.social_total1 == 0 )
{
data.sum_percentage_social = 0;
}
if (data.sum_percentage_science == null)
{
data.sum_percentage_science = 0;
}
if (data.sum_percentage_social == null)
{
data.sum_percentage_social = 0;
}
if (data.total4 != 0 && data.total13!= 0 )
{
data.total19 = ((data.total13 - data.total4) / data.total4) * 100;
}
if (data.total8 != 0 && data.total17!= 0 )
{
data.total20 = ((data.total17 - data.total8) / data.total8) * 100;
}
//data.total13 = (data.total4 * 100) / data.total12;
//data.total14 = (data.total8 * 100) / data.total12;
}
var student_news_facultys = new List<student_graduate_program_year>() {_student_news_faculty};
Report report = new Report();
report.Load(_setting.report_path + "student_graduate_program_year.frx");
report.RegisterData(student_news_facultys, "student_graduate_program_year");
report.Prepare();
MemoryStream stream = new MemoryStream();
switch (type)
{
case "pdf":
PDFExport pdf = new PDFExport();
report.Export(pdf, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/pdf");
case "xls":
case "xlsx":
Excel2007Export excel = new Excel2007Export();
report.Export(excel, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "application/vnd.ms-excel");
break;
case "mht":
MHTExport mht = new MHTExport();
report.Export(mht, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "multipart/related");
break;
case "csv":
CSVExport csv = new CSVExport();
report.Export(csv, stream);
stream.Seek(0, SeekOrigin.Begin);
return File(stream, "text/csv");
break;
}
return Ok();
}
}
}

View File

@@ -0,0 +1,45 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class student_graduate_program_area
{
public string academic_year_name_th { get; set; }
public string data_date { get; set; }
public List<student_news_graduate_programs_detail> data { get; set; }
}
public class student_news_graduate_programs_detail
{
public string area_name_th { get; set; }
public decimal? ph_degree_science { get; set; }
public decimal? ph_degree_social { get; set; }
public decimal? ph_total { get; set; }
public decimal? ph_master_science { get; set; }
public decimal? ph_master_social { get; set; }
public decimal? ph_master_total { get; set; }
public decimal? master_science { get; set; }
public decimal? master_social { get; set; }
public decimal? master_total { get; set; }
public decimal? sum_degree_science { get; set; }
public decimal? sum_degree_social { get; set; }
public decimal? sum_degree { get; set; }
public decimal? sum_percentage_science { get; set; }
public decimal? sum_percentage_social { get; set; }
public decimal? total1 { get; set; }
public decimal? total2 { get; set; }
public decimal? total3 { get; set; }
public decimal? total4 { get; set; }
public decimal? total5 { get; set; }
public decimal? total6 { get; set; }
public decimal? total7 { get; set; }
public decimal? total8 { get; set; }
public decimal? total9 { get; set; }
public decimal? total10 { get; set; }
public decimal? total11 { get; set; }
public decimal? total12 { get; set; }
public decimal? total13 { get; set; }
public decimal? total14 { get; set; }
}
}

View File

@@ -0,0 +1,47 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class student_graduate_program_faculty
{
public string academic_year_name_th { get; set; }
public string data_date { get; set; }
public List<student_graduate_program_faculty_detail> data { get; set; }
}
public class student_graduate_program_faculty_detail
{
public string area_name_th { get; set; }
public decimal? ph_degree_science { get; set; }
public decimal? ph_master_degree_science { get; set; }
public decimal? master_science { get; set; }
public decimal? science_total { get; set; }
public decimal? ph_degree_social { get; set; }
public decimal? ph_master_degree_social { get; set; }
public decimal? master_social { get; set; }
public decimal? social_total { get; set; }
public decimal? sum_degree_ph { get; set; }
public decimal? sum_degree_ph_master { get; set; }
public decimal? sum_degree_master { get; set; }
public decimal? sum_degree { get; set; }
public decimal? sum_percentage_science { get; set; }
public decimal? sum_percentage_social { get; set; }
public decimal? total1 { get; set; }
public decimal? total2 { get; set; }
public decimal? total3 { get; set; }
public decimal? total4 { get; set; }
public decimal? total5 { get; set; }
public decimal? total6 { get; set; }
public decimal? total7 { get; set; }
public decimal? total8 { get; set; }
public decimal? total9 { get; set; }
public decimal? total10 { get; set; }
public decimal? total11 { get; set; }
public decimal? total12 { get; set; }
public decimal? total13 { get; set; }
public decimal? total14 { get; set; }
}
}

View File

@@ -0,0 +1,61 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class student_graduate_program_year
{
public string academic_year_range { get; set; }
public string academic_year_name_th1 { get; set; }
public string academic_year_name_th2 { get; set; }
public string data_date { get; set; }
public List<student_graduate_program_year_detail> data { get; set; }
}
public class student_graduate_program_year_detail
{
public string faculty_academy_name_th { get; set; }
public decimal? ph_degree_science1 { get; set; }
public decimal? ph_master_degree_science1 { get; set; }
public decimal? master_science1 { get; set; }
public decimal? science_total1 { get; set; }
public decimal? ph_degree_social1 { get; set; }
public decimal? ph_master_degree_social1 { get; set; }
public decimal? master_social1 { get; set; }
public decimal? social_total1 { get; set; }
public decimal? science_social_total1 { get; set; }
public decimal? ph_degree_science2 { get; set; }
public decimal? ph_master_degree_science2 { get; set; }
public decimal? master_science2 { get; set; }
public decimal? science_total2 { get; set; }
public decimal? ph_degree_social2 { get; set; }
public decimal? ph_master_degree_social2 { get; set; }
public decimal? master_social2 { get; set; }
public decimal? social_total2 { get; set; }
public decimal? science_social_total2 { get; set; }
public decimal? sum_percentage_science { get; set; }
public decimal? sum_percentage_social { get; set; }
public decimal? total1 { get; set; }
public decimal? total2 { get; set; }
public decimal? total3 { get; set; }
public decimal? total4 { get; set; }
public decimal? total5 { get; set; }
public decimal? total6 { get; set; }
public decimal? total7 { get; set; }
public decimal? total8 { get; set; }
public decimal? total9 { get; set; }
public decimal? total10 { get; set; }
public decimal? total11 { get; set; }
public decimal? total12 { get; set; }
public decimal? total13 { get; set; }
public decimal? total14 { get; set; }
public decimal? total15 { get; set; }
public decimal? total16 { get; set; }
public decimal? total17 { get; set; }
public decimal? total18 { get; set; }
public decimal? total19 { get; set; }
public decimal? total20 { get; set; }
}
}

View File

@@ -0,0 +1,26 @@
using System.Collections.Generic;
namespace rmutr_report.Models
{
public class student_news_graduate_program
{
public string academic_year_name_th { get; set; }
public string data_date { get; set; }
public List<student_news_graduate_program_detail> data { get; set; }
}
public class student_news_graduate_program_detail
{
public string faculty_academy_name_th { get; set; }
public decimal? ph_degree { get; set; }
public decimal? ph_master_degree { get; set; }
public decimal? master_degree { get; set; }
public decimal? sum_degree { get; set; }
public decimal? sum_percentage { get; set; }
public decimal? total1 { get; set; }
public decimal? total2 { get; set; }
public decimal? total3 { get; set; }
public decimal? total4 { get; set; }
public decimal? total5 { get; set; }
}
}

View File

@@ -0,0 +1,304 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="01/27/2023 11:56:04" ReportInfo.CreatorVersion="2022.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="student_graduate_program_area" ReferenceName="student_graduate_program_area" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/>
<Column Name="ph_degree_science" DataType="System.Decimal"/>
<Column Name="ph_degree_social" DataType="System.Decimal"/>
<Column Name="ph_total" DataType="System.Decimal"/>
<Column Name="ph_master_science" DataType="System.Decimal"/>
<Column Name="ph_master_social" DataType="System.Decimal"/>
<Column Name="ph_master_total" DataType="System.Decimal"/>
<Column Name="master_science" DataType="System.Decimal"/>
<Column Name="master_social" DataType="System.Decimal"/>
<Column Name="master_total" DataType="System.Decimal"/>
<Column Name="sum_degree_science" DataType="System.Decimal"/>
<Column Name="sum_degree_social" DataType="System.Decimal"/>
<Column Name="sum_degree" DataType="System.Decimal"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="total6" DataType="System.Decimal"/>
<Column Name="total7" DataType="System.Decimal"/>
<Column Name="total8" DataType="System.Decimal"/>
<Column Name="total9" DataType="System.Decimal"/>
<Column Name="total10" DataType="System.Decimal"/>
<Column Name="total11" DataType="System.Decimal"/>
<Column Name="total12" DataType="System.Decimal"/>
<Column Name="total13" DataType="System.Decimal"/>
<Column Name="total14" DataType="System.Decimal"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
<Total Name="Total" Expression="[student_graduate_program_area.data.sum_degree_science]" Evaluator="Data2" PrintOn="ReportSummary1"/>
<Total Name="Total1" Expression="[student_graduate_program_area.data.sum_degree_social]" Evaluator="Data2" PrintOn="ReportSummary1"/>
<Total Name="Total2" Expression="[student_graduate_program_area.data.sum_degree]" Evaluator="Data2" PrintOn="ReportSummary1"/>
<Total Name="All" Expression="([Total]*100)/[Total2]" Evaluator="Data2" PrintOn="ReportSummary1"/>
<Total Name="All2" Expression="([Total1]*100)/[Total2]" Evaluator="Data2" PrintOn="ReportSummary1"/>
<Total Name="Totaldegree" Expression="[student_graduate_program_area.data.ph_degree_science] + [student_graduate_program_area.data.master_science]+[student_graduate_program_area.data.ph_degree_social]+[student_graduate_program_area.data.master_social]" Evaluator="Data2" PrintOn="ReportSummary1"/>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="390" PaperHeight="210" Watermark.Font="Arial, 60pt">
<PageHeaderBand Name="PageHeader1" Width="1398.6" Height="122.85">
<TableObject Name="Table1" Top="66.15" Width="1398.6" Height="56.7">
<TableColumn Name="Column1" Width="37.8"/>
<TableColumn Name="Column2" Width="302.4"/>
<TableColumn Name="Column3" Width="226.8"/>
<TableColumn Name="Column4" Width="831.6"/>
<TableRow Name="Row1" Height="56.7">
<TableCell Name="Cell1" Border.Lines="All" Fill.Color="InactiveCaption" Text="ลำดับ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell2" Border.Lines="All" Fill.Color="InactiveCaption" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text4" Top="28.35" Width="302.4" Height="28.35" Text="พื้นที่การศึกษา" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text1" Width="302.4" Height="28.35" Border.Lines="Bottom" Text="กลุ่มสาขาวิชา และหลักสูตรปริญญา" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell3" Border.Lines="All" Fill.Color="InactiveCaption" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text10" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Top" Text="วิทย์" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text11" Left="75.6" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="สังคม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text12" Left="151.2" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text6" Width="226.8" Height="28.35" Text="ปริญญาเอก" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell4" Border.Lines="All" Fill.Color="InactiveCaption" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text22" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Top" Text="วิทย์" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text23" Left="75.6" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="สังคม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text24" Width="226.8" Height="28.35" Border.Lines="Right" Text="ปริญญาโท+เอก" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text25" Left="151.2" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Right, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text26" Left="226.8" Width="226.8" Height="28.35" Border.Lines="Right" Text="ปริญญาโท" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text27" Left="226.8" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Top" Text="วิทย์" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text28" Left="302.4" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="สังคม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text29" Left="378" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Right, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text30" Left="453.6" Width="226.8" Height="28.35" Border.Lines="Right" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text31" Left="453.6" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Top" Text="วิทย์" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text32" Left="529.2" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="สังคม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text33" Left="604.8" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Right, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text8" Left="680.4" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Top" Text="วิทย์" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text9" Left="756" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="สังคม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text34" Left="680.4" Width="151.2" Height="28.35" Text="ร้อยละ" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
</TableRow>
</TableObject>
<TextObject Name="Text2" Width="1398.6" Height="28.35" Text="รายงานนักศึกษาเข้าใหม่ ปีการศึกษา [student_graduate_program_area.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
<TextObject Name="Text3" Top="28.35" Width="1398.6" Height="28.35" Text="จำนวนนักศึกษาเข้าใหม่ หลักสูตรบัณฑิตศึกษา จำแนกตามพื้นที่การศึกษา และกลุ่มสาขาวิชา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
</PageHeaderBand>
<DataBand Name="Data1" Top="126.85" Width="1398.6">
<DataBand Name="Data2" Top="130.85" Width="1398.6" Height="28.35" DataSource="data">
<TableObject Name="Table14" Width="1398.6" Height="28.35" Border.Lines="All">
<TableColumn Name="Column70" Width="37.8"/>
<TableColumn Name="Column71" Width="302.4"/>
<TableColumn Name="Column72" Width="75.6"/>
<TableColumn Name="Column73" Width="75.6"/>
<TableColumn Name="Column78" Width="75.6"/>
<TableColumn Name="Column79" Width="75.6"/>
<TableColumn Name="Column80" Width="75.6"/>
<TableColumn Name="Column88" Width="75.6"/>
<TableColumn Name="Column89" Width="75.6"/>
<TableColumn Name="Column90" Width="75.6"/>
<TableColumn Name="Column91" Width="75.6"/>
<TableColumn Name="Column92" Width="75.6"/>
<TableColumn Name="Column93" Width="75.6"/>
<TableColumn Name="Column94" Width="75.6"/>
<TableColumn Name="Column95" Width="75.6"/>
<TableColumn Name="Column96" Width="75.6"/>
<TableRow Name="Row14" Height="28.35">
<TableCell Name="Cell110" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell111" Border.Lines="All" Text="[student_graduate_program_area.data.area_name_th]" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell112" Border.Lines="All" Text="[student_graduate_program_area.data.ph_degree_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell113" Border.Lines="All" Text="[student_graduate_program_area.data.ph_degree_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell118" Border.Lines="All" Text="[student_graduate_program_area.data.ph_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell119" Border.Lines="All" Text="[student_graduate_program_area.data.ph_master_science]" 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="Cell120" Border.Lines="All" Text="[student_graduate_program_area.data.ph_master_social]" 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="Cell128" Border.Lines="All" Text="[student_graduate_program_area.data.ph_master_total]" 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="Cell129" Border.Lines="All" Text="[student_graduate_program_area.data.master_science]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell130" Border.Lines="All" Text="[student_graduate_program_area.data.master_social]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell131" Border.Lines="All" Text="[student_graduate_program_area.data.master_total]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell132" Border.Lines="All" Text="[student_graduate_program_area.data.sum_degree_science]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell133" Border.Lines="All" Text="[student_graduate_program_area.data.sum_degree_social]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell134" Border.Lines="All" Text="[student_graduate_program_area.data.sum_degree]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell135" Border.Lines="All" Text="[student_graduate_program_area.data.sum_percentage_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell136" Border.Lines="All" Text="[student_graduate_program_area.data.sum_percentage_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary1" Top="163.2" Width="1398.6" Height="94.5">
<TableObject Name="Table15" Width="1398.6" Height="28.35" Border.Lines="All">
<TableColumn Name="Column81" Width="37.8"/>
<TableColumn Name="Column82" Width="302.4"/>
<TableColumn Name="Column83" Width="75.6"/>
<TableColumn Name="Column84" Width="75.6"/>
<TableColumn Name="Column85" Width="75.6"/>
<TableColumn Name="Column86" Width="75.6"/>
<TableColumn Name="Column87" Width="75.6"/>
<TableColumn Name="Column97" Width="75.6"/>
<TableColumn Name="Column98" Width="75.6"/>
<TableColumn Name="Column99" Width="75.6"/>
<TableColumn Name="Column100" Width="75.6"/>
<TableColumn Name="Column101" Width="75.6"/>
<TableColumn Name="Column102" Width="75.6"/>
<TableColumn Name="Column103" Width="75.6"/>
<TableColumn Name="Column104" Width="75.6"/>
<TableColumn Name="Column105" Width="75.6"/>
<TableRow Name="Row15" Height="28.35">
<TableCell Name="Cell121" Fill.Color="InactiveCaption" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell122" Border.Lines="All" Fill.Color="InactiveCaption" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell123" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell124" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell125" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell126" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell127" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell137" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell138" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell139" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total8]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell140" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total9]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell141" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total10]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell142" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total11]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell143" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total12]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell144" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total13]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell145" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_area.data.total14]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
<TextObject Name="Text21" Top="66.15" Width="1398.6" Height="28.35" Text="ที่มา สำนักส่งเสริมวิชาการและงานทะเบียน" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
<TextObject Name="Text20" Top="37.8" Width="1398.6" Height="28.35" Text="ข้อมูล ณ วันที่ [student_graduate_program_area.data_date]" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
</ReportSummaryBand>
</ReportPage>
</Report>

View File

@@ -0,0 +1,297 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="01/27/2023 13:03:35" ReportInfo.CreatorVersion="2022.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="student_graduate_program_faculty" ReferenceName="student_graduate_program_faculty" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="area_name_th" DataType="System.String"/>
<Column Name="ph_degree_science" DataType="System.Decimal"/>
<Column Name="ph_master_degree_science" DataType="System.Decimal"/>
<Column Name="master_science" DataType="System.Decimal"/>
<Column Name="science_total" DataType="System.Decimal"/>
<Column Name="ph_degree_social" DataType="System.Decimal"/>
<Column Name="ph_master_degree_social" DataType="System.Decimal"/>
<Column Name="master_social" DataType="System.Decimal"/>
<Column Name="social_total" DataType="System.Decimal"/>
<Column Name="sum_degree_ph" DataType="System.Decimal"/>
<Column Name="sum_degree_ph_master" DataType="System.Decimal"/>
<Column Name="sum_degree_master" DataType="System.Decimal"/>
<Column Name="sum_degree" DataType="System.Decimal"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="total6" DataType="System.Decimal"/>
<Column Name="total7" DataType="System.Decimal"/>
<Column Name="total8" DataType="System.Decimal"/>
<Column Name="total9" DataType="System.Decimal"/>
<Column Name="total10" DataType="System.Decimal"/>
<Column Name="total11" DataType="System.Decimal"/>
<Column Name="total12" DataType="System.Decimal"/>
<Column Name="total13" DataType="System.Decimal"/>
<Column Name="total14" DataType="System.Decimal"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="390" PaperHeight="210" Watermark.Font="Arial, 60pt">
<PageHeaderBand Name="PageHeader1" Width="1398.6" Height="122.85">
<TableObject Name="Table1" Top="66.15" Width="1398.6" Height="56.7">
<TableColumn Name="Column1" Width="37.8"/>
<TableColumn Name="Column2" Width="302.4"/>
<TableColumn Name="Column3" Width="302.4"/>
<TableColumn Name="Column4" Width="756"/>
<TableRow Name="Row1" Height="56.7">
<TableCell Name="Cell1" Border.Lines="All" Fill.Color="InactiveCaption" Text="ลำดับ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell2" Border.Lines="All" Fill.Color="InactiveCaption" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text4" Top="28.35" Width="302.4" Height="28.35" Text="พื้นที่การศึกษา" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text1" Width="302.4" Height="28.35" Border.Lines="Bottom" Text="กลุ่มสาขาวิชา และหลักสูตรปริญญา" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell3" Border.Lines="All" Fill.Color="InactiveCaption" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text10" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Top" Text="ป.เอก" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text11" Left="75.6" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="ป.โท+เอก" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text12" Left="151.2" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="ป.โท" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text6" Width="302.4" Height="28.35" Text="วิทยาศาสตร์" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text34" Left="226.8" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell4" Border.Lines="All" Fill.Color="InactiveCaption" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text24" Width="302.4" Height="28.35" Border.Lines="Right" Text="สังคมศาสตร์" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text26" Left="302.4" Width="302.4" Height="28.35" Border.Lines="Right" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text30" Left="604.8" Width="151.2" Height="28.35" Border.Lines="Right" Text="ร้อยละ" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text35" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Top" Text="ป.เอก" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text36" Left="75.6" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="ป.โท+เอก" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text37" Left="151.2" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="ป.โท" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text38" Left="226.8" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Right, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text39" Left="302.4" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Top" Text="ป.เอก" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text40" Left="378" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="ป.โท+เอก" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text41" Left="453.6" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="ป.โท" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text42" Left="529.2" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Left, Right, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text22" Left="604.8" Top="28.35" Width="75.6" Height="28.35" Border.Lines="Top" Text="วิทย์" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text23" Left="680.4" Top="28.35" Width="75.6" 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="1398.6" Height="28.35" Text="รายงานนักศึกษาเข้าใหม่ ปีการศึกษา [student_graduate_program_faculty.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
<TextObject Name="Text3" Top="28.35" Width="1398.6" Height="28.35" Text="จำนวนนักศึกษาเข้าใหม่ หลักสูตรบัณฑิตศึกษา จำแนกตามคณะ วิทยาลัย และกลุ่มสาขาวิชา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
</PageHeaderBand>
<DataBand Name="Data1" Top="126.85" Width="1398.6">
<DataBand Name="Data2" Top="130.85" Width="1398.6" Height="28.35" DataSource="data">
<TableObject Name="Table14" Width="1398.6" Height="28.35" Border.Lines="All">
<TableColumn Name="Column70" Width="37.8"/>
<TableColumn Name="Column71" Width="302.4"/>
<TableColumn Name="Column72" Width="75.6"/>
<TableColumn Name="Column73" Width="75.6"/>
<TableColumn Name="Column78" Width="75.6"/>
<TableColumn Name="Column79" Width="75.6"/>
<TableColumn Name="Column80" Width="75.6"/>
<TableColumn Name="Column88" Width="75.6"/>
<TableColumn Name="Column89" Width="75.6"/>
<TableColumn Name="Column90" Width="75.6"/>
<TableColumn Name="Column91" Width="75.6"/>
<TableColumn Name="Column92" Width="75.6"/>
<TableColumn Name="Column93" Width="75.6"/>
<TableColumn Name="Column94" Width="75.6"/>
<TableColumn Name="Column95" Width="75.6"/>
<TableColumn Name="Column96" Width="75.6"/>
<TableRow Name="Row14" Height="28.35">
<TableCell Name="Cell110" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell111" Border.Lines="All" Text="[student_graduate_program_faculty.data.area_name_th]" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell112" Border.Lines="All" Text="[student_graduate_program_faculty.data.ph_degree_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell113" Border.Lines="All" Text="[student_graduate_program_faculty.data.ph_master_degree_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell118" Border.Lines="All" Text="[student_graduate_program_faculty.data.master_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell119" Border.Lines="All" Text="[student_graduate_program_faculty.data.science_total]" 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="Cell120" Border.Lines="All" Text="[student_graduate_program_faculty.data.ph_degree_social]" 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="Cell128" Border.Lines="All" Text="[student_graduate_program_faculty.data.ph_master_degree_social]" 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="Cell129" Border.Lines="All" Text="[student_graduate_program_faculty.data.master_social]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell130" Border.Lines="All" Text="[student_graduate_program_faculty.data.social_total]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell131" Border.Lines="All" Text="[student_graduate_program_faculty.data.sum_degree_ph]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell132" Border.Lines="All" Text="[student_graduate_program_faculty.data.sum_degree_ph_master]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell133" Border.Lines="All" Text="[student_graduate_program_faculty.data.sum_degree_master]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell134" Border.Lines="All" Text="[student_graduate_program_faculty.data.sum_degree]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell135" Border.Lines="All" Text="[student_graduate_program_faculty.data.sum_percentage_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell136" Border.Lines="All" Text="[student_graduate_program_faculty.data.sum_percentage_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary1" Top="163.2" Width="1398.6" Height="94.5">
<TableObject Name="Table15" Width="1398.6" Height="28.35" Border.Lines="All">
<TableColumn Name="Column81" Width="37.8"/>
<TableColumn Name="Column82" Width="302.4"/>
<TableColumn Name="Column83" Width="75.6"/>
<TableColumn Name="Column84" Width="75.6"/>
<TableColumn Name="Column85" Width="75.6"/>
<TableColumn Name="Column86" Width="75.6"/>
<TableColumn Name="Column87" Width="75.6"/>
<TableColumn Name="Column97" Width="75.6"/>
<TableColumn Name="Column98" Width="75.6"/>
<TableColumn Name="Column99" Width="75.6"/>
<TableColumn Name="Column100" Width="75.6"/>
<TableColumn Name="Column101" Width="75.6"/>
<TableColumn Name="Column102" Width="75.6"/>
<TableColumn Name="Column103" Width="75.6"/>
<TableColumn Name="Column104" Width="75.6"/>
<TableColumn Name="Column105" Width="75.6"/>
<TableRow Name="Row15" Height="28.35">
<TableCell Name="Cell121" Fill.Color="InactiveCaption" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell122" Border.Lines="All" Fill.Color="InactiveCaption" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell123" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell124" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell125" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell126" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell127" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell137" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell138" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell139" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total8]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell140" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total9]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell141" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total10]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell142" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total11]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell143" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total12]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell144" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total13]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell145" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_faculty.data.total14]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
<TextObject Name="Text21" Top="66.15" Width="1398.6" Height="28.35" Text="ที่มา สำนักส่งเสริมวิชาการและงานทะเบียน" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
<TextObject Name="Text20" Top="37.8" Width="1398.6" Height="28.35" Text="ข้อมูล ณ วันที่ [student_graduate_program_faculty.data_date]" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
</ReportSummaryBand>
</ReportPage>
</Report>

View File

@@ -0,0 +1,397 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="01/27/2023 15:05:02" ReportInfo.CreatorVersion="2022.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="student_graduate_program_year" ReferenceName="student_graduate_program_year" DataType="null" Enabled="true">
<Column Name="academic_year_range" DataType="System.String"/>
<Column Name="academic_year_name_th1" DataType="System.String"/>
<Column Name="academic_year_name_th2" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="faculty_academy_name_th" DataType="System.String"/>
<Column Name="ph_degree_science1" DataType="System.Decimal"/>
<Column Name="ph_master_degree_science1" DataType="System.Decimal"/>
<Column Name="master_science1" DataType="System.Decimal"/>
<Column Name="science_total1" DataType="System.Decimal"/>
<Column Name="ph_degree_social1" DataType="System.Decimal"/>
<Column Name="ph_master_degree_social1" DataType="System.Decimal"/>
<Column Name="master_social1" DataType="System.Decimal"/>
<Column Name="social_total1" DataType="System.Decimal"/>
<Column Name="science_social_total1" DataType="System.Decimal"/>
<Column Name="ph_degree_science2" DataType="System.Decimal"/>
<Column Name="ph_master_degree_science2" DataType="System.Decimal"/>
<Column Name="master_science2" DataType="System.Decimal"/>
<Column Name="science_total2" DataType="System.Decimal"/>
<Column Name="ph_degree_social2" DataType="System.Decimal"/>
<Column Name="ph_master_degree_social2" DataType="System.Decimal"/>
<Column Name="master_social2" DataType="System.Decimal"/>
<Column Name="social_total2" DataType="System.Decimal"/>
<Column Name="science_social_total2" DataType="System.Decimal"/>
<Column Name="sum_percentage_science" DataType="System.Decimal"/>
<Column Name="sum_percentage_social" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
<Column Name="total6" DataType="System.Decimal"/>
<Column Name="total7" DataType="System.Decimal"/>
<Column Name="total8" DataType="System.Decimal"/>
<Column Name="total9" DataType="System.Decimal"/>
<Column Name="total10" DataType="System.Decimal"/>
<Column Name="total11" DataType="System.Decimal"/>
<Column Name="total12" DataType="System.Decimal"/>
<Column Name="total13" DataType="System.Decimal"/>
<Column Name="total14" DataType="System.Decimal"/>
<Column Name="total15" DataType="System.Decimal"/>
<Column Name="total16" DataType="System.Decimal"/>
<Column Name="total17" DataType="System.Decimal"/>
<Column Name="total18" DataType="System.Decimal"/>
<Column Name="total19" DataType="System.Decimal"/>
<Column Name="total20" DataType="System.Decimal"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
</Dictionary>
<ReportPage Name="Page1" Landscape="true" PaperWidth="420" PaperHeight="210" Watermark.Font="Arial, 60pt">
<PageHeaderBand Name="PageHeader1" Width="1512" Height="151.2">
<TableObject Name="Table1" Top="66.15" Width="1512" Height="85.05">
<TableColumn Name="Column1" Width="37.8"/>
<TableColumn Name="Column2" Width="302.4"/>
<TableColumn Name="Column3" Width="510.3"/>
<TableColumn Name="Column4" Width="661.5"/>
<TableRow Name="Row1" Height="85.05">
<TableCell Name="Cell1" Border.Lines="All" Fill.Color="InactiveCaption" Text="ลำดับ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell2" Border.Lines="All" Fill.Color="InactiveCaption" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text4" Top="28.35" Width="302.4" Height="28.35" Text="กลุ่มสาขาวิชา และหลักสูตรปริญญา" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text1" Width="302.4" Height="28.35" Border.Lines="Right, Top, Bottom" Fill.Color="ActiveCaption" Text="ปีการศึกษา" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text43" Top="56.7" Width="302.4" Height="28.35" Border.Lines="Top" Text="คณะ และวิทยาลัย" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell3" Border.Lines="All" Fill.Color="InactiveCaption" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text10" Top="56.7" 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="56.7" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="ป.โท+เอก" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text12" Left="113.4" Top="56.7" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="ป.โท" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text6" Top="28.35" Width="226.8" Height="28.35" Text="วิทยาศาสตร์" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text34" Left="170.1" Top="56.7" 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="510.3" Height="28.35" Border.Lines="Left, Top, Bottom" Fill.Color="ActiveCaption" Text="ปีการศึกษา" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text45" Left="226.8" Top="28.35" Width="226.8" Height="28.35" Border.Lines="Left, Bottom" Text="สังคมศาสตร์" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text46" Left="226.8" Top="56.7" 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="283.5" Top="56.7" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="ป.โท+เอก" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text48" Left="340.2" Top="56.7" 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="396.9" Top="56.7" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text22" Left="453.6" Top="28.35" Width="56.7" Height="56.7" Border.Lines="Left, Right, Top" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell4" Border.Lines="All" Fill.Color="InactiveCaption" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text51" Left="226.8" Top="28.35" Width="226.8" Height="28.35" Border.Lines="Left, Right, Bottom" Text="สังคมศาสตร์" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text53" Left="56.7" Top="56.7" 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="113.4" Top="56.7" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="ป.โท" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text55" Left="170.1" Top="56.7" 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="226.8" Top="56.7" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="ป.เอก" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text57" Left="283.5" Top="56.7" 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="340.2" Top="56.7" 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="396.9" Top="56.7" Width="56.7" Height="28.35" Border.Lines="Left, Top" Text="รวม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text60" Left="510.3" Top="56.7" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="วิทย์" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text61" Left="585.9" Top="56.7" Width="75.6" Height="28.35" Border.Lines="Left, Top" Text="สังคม" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text26" Left="510.3" Width="151.2" Height="56.7" Text="ร้อยละการเพิ่ม/ลด" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text24" Width="510.3" Height="28.35" Border.Lines="All" Fill.Color="ActiveCaption" Text="ปีการศึกษา" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text50" Top="28.35" Width="226.8" Height="28.35" Text="วิทยาศาสตร์" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text52" Top="56.7" Width="56.7" Height="28.35" Border.Lines="Top" Text="ป.เอก" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text62" Left="453.6" Top="28.35" Width="56.7" Height="56.7" Border.Lines="Left, Right, Top" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
</TableRow>
</TableObject>
<TextObject Name="Text2" Width="1512" Height="28.35" Text="จำนวนนักศึกษาเข้าใหม่ หลักสูตรบัณฑิตศึกษา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
<TextObject Name="Text3" Top="28.35" Width="1512" Height="28.35" Text="จำแนกตามคณะ วิทยาลัย ปีการศึกษา และกลุ่มสาขาวิชา เปรียบเทียบระหว่างปีการศึกษา [student_graduate_program_year.academic_year_range]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
</PageHeaderBand>
<DataBand Name="Data1" Top="155.37" Width="1512">
<DataBand Name="Data2" Top="159.53" Width="1512" Height="28.35" DataSource="data">
<TableObject Name="Table14" Width="1512" Height="28.35" Border.Lines="All">
<TableColumn Name="Column70" Width="37.8"/>
<TableColumn Name="Column71" Width="302.4"/>
<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="Column106" Width="56.7"/>
<TableColumn Name="Column107" Width="56.7"/>
<TableColumn Name="Column108" Width="56.7"/>
<TableColumn Name="Column109" Width="56.7"/>
<TableColumn Name="Column114" Width="75.6"/>
<TableColumn Name="Column115" Width="75.6"/>
<TableRow Name="Row14" Height="28.35">
<TableCell Name="Cell110" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell111" Border.Lines="All" Text="[student_graduate_program_year.data.faculty_academy_name_th]" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell112" Border.Lines="All" Text="[student_graduate_program_year.data.ph_degree_science1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell113" Border.Lines="All" Text="[student_graduate_program_year.data.ph_master_degree_science1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell118" Border.Lines="All" Text="[student_graduate_program_year.data.master_science1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell119" Border.Lines="All" Text="[student_graduate_program_year.data.science_total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell120" Border.Lines="All" Text="[student_graduate_program_year.data.ph_degree_social1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell128" Border.Lines="All" Text="[student_graduate_program_year.data.ph_master_degree_social1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell129" Border.Lines="All" Text="[student_graduate_program_year.data.master_social1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell130" Border.Lines="All" Text="[student_graduate_program_year.data.social_total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell131" Border.Lines="All" Text="[student_graduate_program_year.data.science_social_total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell132" Border.Lines="All" Text="[student_graduate_program_year.data.ph_degree_science2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell133" Border.Lines="All" Text="[student_graduate_program_year.data.ph_master_degree_science2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell134" Border.Lines="All" Text="[student_graduate_program_year.data.master_science2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell135" Border.Lines="All" Text="[student_graduate_program_year.data.science_total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell136" Border.Lines="All" Text="[student_graduate_program_year.data.ph_degree_social2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell146" Border.Lines="All" Text="[student_graduate_program_year.data.ph_master_degree_social2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell147" Border.Lines="All" Text="[student_graduate_program_year.data.master_social2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell148" Border.Lines="All" Text="[student_graduate_program_year.data.social_total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell149" Border.Lines="All" Text="[student_graduate_program_year.data.science_social_total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell154" Border.Lines="All" Text="[student_graduate_program_year.data.sum_percentage_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell155" Border.Lines="All" Text="[student_graduate_program_year.data.sum_percentage_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary1" Top="192.05" Width="1512" Height="94.5">
<TableObject Name="Table15" Width="1512" Height="28.35" Border.Lines="All">
<TableColumn Name="Column81" Width="37.8"/>
<TableColumn Name="Column82" Width="302.4"/>
<TableColumn Name="Column83" Width="56.7"/>
<TableColumn Name="Column84" Width="56.7"/>
<TableColumn Name="Column85" Width="56.7"/>
<TableColumn Name="Column86" Width="56.7"/>
<TableColumn Name="Column87" Width="56.7"/>
<TableColumn Name="Column97" Width="56.7"/>
<TableColumn Name="Column98" Width="56.7"/>
<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="Column110" Width="56.7"/>
<TableColumn Name="Column111" Width="56.7"/>
<TableColumn Name="Column112" Width="56.7"/>
<TableColumn Name="Column113" Width="56.7"/>
<TableColumn Name="Column116" Width="75.6"/>
<TableColumn Name="Column117" Width="75.6"/>
<TableRow Name="Row15" Height="28.35">
<TableCell Name="Cell121" Fill.Color="InactiveCaption" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell122" Border.Lines="All" Fill.Color="InactiveCaption" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell123" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell124" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell125" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell126" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell127" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total5]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell137" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total6]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell138" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total7]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell139" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total8]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell140" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total9]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell141" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total10]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell142" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total11]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell143" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total12]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell144" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total13]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell145" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total14]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell150" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total15]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell151" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total16]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell152" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total17]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell153" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total18]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell156" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total19]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell157" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_graduate_program_year.data.total20]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
<TextObject Name="Text21" Top="66.15" Width="1512" Height="28.35" Text="ที่มา สำนักส่งเสริมวิชาการและงานทะเบียน" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
<TextObject Name="Text20" Top="37.8" Width="1512" Height="28.35" Text="ข้อมูล ณ วันที่ [student_graduate_program_year.data_date]" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
</ReportSummaryBand>
</ReportPage>
</Report>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="01/26/2023 14:28:48" ReportInfo.CreatorVersion="2022.1.0.0"> <Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="01/26/2023 15:26:40" ReportInfo.CreatorVersion="2022.1.0.0">
<Dictionary> <Dictionary>
<BusinessObjectDataSource Name="student_news_area" ReferenceName="student_news_area" DataType="null" Enabled="true"> <BusinessObjectDataSource Name="student_news_area" ReferenceName="student_news_area" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/> <Column Name="academic_year_name_th" DataType="System.String"/>
@@ -62,11 +62,31 @@
<TableRow Name="Row14" Height="28.35"> <TableRow Name="Row14" Height="28.35">
<TableCell Name="Cell110" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell110" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell111" Border.Lines="All" Text="[student_news_area.data.area_name_th]" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell111" Border.Lines="All" Text="[student_news_area.data.area_name_th]" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell112" Border.Lines="All" Text="[student_news_area.data.bachelors_degree_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell112" Border.Lines="All" Text="[student_news_area.data.bachelors_degree_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell113" Border.Lines="All" Text="[student_news_area.data.bachelors_degree_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <Highlight>
<TableCell Name="Cell118" Border.Lines="All" Text="[student_news_area.data.bachelors_degree_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
<TableCell Name="Cell119" Border.Lines="All" Text="[student_news_area.data.sum_percentage_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> </Highlight>
<TableCell Name="Cell120" Border.Lines="All" Text="[student_news_area.data.sum_percentage_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> </TableCell>
<TableCell Name="Cell113" Border.Lines="All" Text="[student_news_area.data.bachelors_degree_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell118" Border.Lines="All" Text="[student_news_area.data.bachelors_degree_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell119" Border.Lines="All" Text="[student_news_area.data.sum_percentage_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell120" Border.Lines="All" Text="[student_news_area.data.sum_percentage_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow> </TableRow>
</TableObject> </TableObject>
</DataBand> </DataBand>
@@ -83,11 +103,31 @@
<TableRow Name="Row15" Height="28.35"> <TableRow Name="Row15" Height="28.35">
<TableCell Name="Cell121" Fill.Color="InactiveCaption" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/> <TableCell Name="Cell121" Fill.Color="InactiveCaption" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell122" Border.Lines="All" Fill.Color="InactiveCaption" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell122" Border.Lines="All" Fill.Color="InactiveCaption" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell123" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell123" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TableCell Name="Cell124" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <Highlight>
<TableCell Name="Cell125" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
<TableCell Name="Cell126" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> </Highlight>
<TableCell Name="Cell127" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> </TableCell>
<TableCell Name="Cell124" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell125" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell126" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell127" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow> </TableRow>
</TableObject> </TableObject>
<TextObject Name="Text13" Top="37.8" Width="718.2" Height="28.35" Text="ข้อมูล ณ วันที่ [student_news_area.data_date]" VertAlign="Center" Font="TH Sarabun New, 15pt"/> <TextObject Name="Text13" Top="37.8" Width="718.2" Height="28.35" Text="ข้อมูล ณ วันที่ [student_news_area.data_date]" VertAlign="Center" Font="TH Sarabun New, 15pt"/>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="01/26/2023 14:29:13" ReportInfo.CreatorVersion="2022.1.0.0"> <Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="01/26/2023 16:59:12" ReportInfo.CreatorVersion="2022.1.0.0">
<Dictionary> <Dictionary>
<BusinessObjectDataSource Name="student_news_area" ReferenceName="student_news_area" DataType="null" Enabled="true"> <BusinessObjectDataSource Name="student_news_area" ReferenceName="student_news_area" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/> <Column Name="academic_year_name_th" DataType="System.String"/>
@@ -49,8 +49,8 @@
<TextObject Name="Text2" Width="718.2" Height="28.35" Text="รายงานนักศึกษาเข้าใหม่ ปีการศึกษา [student_news_area.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/> <TextObject Name="Text2" Width="718.2" Height="28.35" Text="รายงานนักศึกษาเข้าใหม่ ปีการศึกษา [student_news_area.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
<TextObject Name="Text3" Top="28.35" Width="718.2" Height="28.35" Text="จำนวนนักศึกษาเข้าใหม่ หลักสูตร[student_news_area.curriculum_name_th] จำแนกตามคณะ วิทยาลัย และกลุ่มสาขาวิชา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/> <TextObject Name="Text3" Top="28.35" Width="718.2" Height="28.35" Text="จำนวนนักศึกษาเข้าใหม่ หลักสูตร[student_news_area.curriculum_name_th] จำแนกตามคณะ วิทยาลัย และกลุ่มสาขาวิชา" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
</PageHeaderBand> </PageHeaderBand>
<DataBand Name="Data1" Top="126.18" Width="718.2"> <DataBand Name="Data1" Top="126.85" Width="718.2">
<DataBand Name="Data2" Top="129.52" Width="718.2" Height="28.35" DataSource="data"> <DataBand Name="Data2" Top="130.85" Width="718.2" Height="28.35" DataSource="data">
<TableObject Name="Table14" Width="718.2" Height="28.35" Border.Lines="All"> <TableObject Name="Table14" Width="718.2" Height="28.35" Border.Lines="All">
<TableColumn Name="Column70" Width="37.8"/> <TableColumn Name="Column70" Width="37.8"/>
<TableColumn Name="Column71" Width="302.4"/> <TableColumn Name="Column71" Width="302.4"/>
@@ -62,16 +62,36 @@
<TableRow Name="Row14" Height="28.35"> <TableRow Name="Row14" Height="28.35">
<TableCell Name="Cell110" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell110" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell111" Border.Lines="All" Text="[student_news_area.data.faculty_academy_name_th]" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell111" Border.Lines="All" Text="[student_news_area.data.faculty_academy_name_th]" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell112" Border.Lines="All" Text="[student_news_area.data.bachelors_degree_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell112" Border.Lines="All" Text="[student_news_area.data.bachelors_degree_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell113" Border.Lines="All" Text="[student_news_area.data.bachelors_degree_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <Highlight>
<TableCell Name="Cell118" Border.Lines="All" Text="[student_news_area.data.bachelors_degree_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <Condition Expression="Value &lt; 0 " Font="Arial, 10pt"/>
<TableCell Name="Cell119" Border.Lines="All" Text="[student_news_area.data.sum_percentage_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> </Highlight>
<TableCell Name="Cell120" Border.Lines="All" Text="[student_news_area.data.sum_percentage_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> </TableCell>
<TableCell Name="Cell113" Border.Lines="All" Text="[student_news_area.data.bachelors_degree_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0 " Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell118" Border.Lines="All" Text="[student_news_area.data.bachelors_degree_total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0 " Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell119" Border.Lines="All" Text="[student_news_area.data.sum_percentage_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0 " Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell120" Border.Lines="All" Text="[student_news_area.data.sum_percentage_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0 " Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow> </TableRow>
</TableObject> </TableObject>
</DataBand> </DataBand>
</DataBand> </DataBand>
<ReportSummaryBand Name="ReportSummary1" Top="161.2" Width="718.2" Height="94.5"> <ReportSummaryBand Name="ReportSummary1" Top="163.2" Width="718.2" Height="94.5">
<TableObject Name="Table15" Width="718.2" Height="28.35" Border.Lines="All"> <TableObject Name="Table15" Width="718.2" Height="28.35" Border.Lines="All">
<TableColumn Name="Column81" Width="37.8"/> <TableColumn Name="Column81" Width="37.8"/>
<TableColumn Name="Column82" Width="302.4"/> <TableColumn Name="Column82" Width="302.4"/>
@@ -83,11 +103,31 @@
<TableRow Name="Row15" Height="28.35"> <TableRow Name="Row15" Height="28.35">
<TableCell Name="Cell121" Fill.Color="InactiveCaption" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/> <TableCell Name="Cell121" Fill.Color="InactiveCaption" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell122" Border.Lines="All" Fill.Color="InactiveCaption" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell122" Border.Lines="All" Fill.Color="InactiveCaption" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell123" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell123" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TableCell Name="Cell124" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <Highlight>
<TableCell Name="Cell125" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
<TableCell Name="Cell126" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> </Highlight>
<TableCell Name="Cell127" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> </TableCell>
<TableCell Name="Cell124" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell125" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell126" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell127" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_area.data.total5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow> </TableRow>
</TableObject> </TableObject>
<TextObject Name="Text21" Top="66.15" Width="718.2" Height="28.35" Text="ที่มา สำนักส่งเสริมวิชาการและงานทะเบียน" VertAlign="Center" Font="TH Sarabun New, 15pt"/> <TextObject Name="Text21" Top="66.15" Width="718.2" Height="28.35" Text="ที่มา สำนักส่งเสริมวิชาการและงานทะเบียน" VertAlign="Center" Font="TH Sarabun New, 15pt"/>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="01/26/2023 14:29:03" ReportInfo.CreatorVersion="2022.1.0.0"> <Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="01/26/2023 15:26:58" ReportInfo.CreatorVersion="2022.1.0.0">
<Dictionary> <Dictionary>
<BusinessObjectDataSource Name="student_news_faculty" ReferenceName="student_news_faculty" DataType="null" Enabled="true"> <BusinessObjectDataSource Name="student_news_faculty" ReferenceName="student_news_faculty" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/> <Column Name="academic_year_name_th" DataType="System.String"/>
@@ -44,8 +44,16 @@
<TableRow Name="Row14" Height="28.35"> <TableRow Name="Row14" Height="28.35">
<TableCell Name="Cell110" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell110" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell111" Border.Lines="All" Text="[student_news_faculty.data.faculty_academy_name_th]" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell111" Border.Lines="All" Text="[student_news_faculty.data.faculty_academy_name_th]" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell112" Border.Lines="All" Text="[student_news_faculty.data.bachelors_degree]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell112" Border.Lines="All" Text="[student_news_faculty.data.bachelors_degree]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell113" Border.Lines="All" Text="[student_news_faculty.data.sum_percentage]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell113" Border.Lines="All" Text="[student_news_faculty.data.sum_percentage]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow> </TableRow>
</TableObject> </TableObject>
</DataBand> </DataBand>
@@ -59,8 +67,16 @@
<TableRow Name="Row15" Height="28.35"> <TableRow Name="Row15" Height="28.35">
<TableCell Name="Cell114" Fill.Color="InactiveCaption" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/> <TableCell Name="Cell114" Fill.Color="InactiveCaption" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell115" Border.Lines="All" Fill.Color="InactiveCaption" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell115" Border.Lines="All" Fill.Color="InactiveCaption" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell116" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_faculty.data.total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell116" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_faculty.data.total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TableCell Name="Cell117" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_faculty.data.total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell117" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_faculty.data.total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow> </TableRow>
</TableObject> </TableObject>
<TextObject Name="Text21" Top="66.15" Width="718.2" Height="28.35" Text="ที่มา สำนักส่งเสริมวิชาการและงานทะเบียน" VertAlign="Center" Font="TH Sarabun New, 15pt"/> <TextObject Name="Text21" Top="66.15" Width="718.2" Height="28.35" Text="ที่มา สำนักส่งเสริมวิชาการและงานทะเบียน" VertAlign="Center" Font="TH Sarabun New, 15pt"/>

View File

@@ -0,0 +1,167 @@
<?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="01/26/2023 16:59:34" ReportInfo.CreatorVersion="2022.1.0.0">
<Dictionary>
<BusinessObjectDataSource Name="student_news_graduate_program" ReferenceName="student_news_graduate_program" DataType="null" Enabled="true">
<Column Name="academic_year_name_th" DataType="System.String"/>
<Column Name="data_date" DataType="System.String"/>
<BusinessObjectDataSource Name="data" DataType="null" Enabled="true">
<Column Name="faculty_academy_name_th" DataType="System.String"/>
<Column Name="ph_degree" DataType="System.Decimal"/>
<Column Name="ph_master_degree" DataType="System.Decimal"/>
<Column Name="master_degree" DataType="System.Decimal"/>
<Column Name="sum_degree" DataType="System.Decimal"/>
<Column Name="sum_percentage" DataType="System.Decimal"/>
<Column Name="total1" DataType="System.Decimal"/>
<Column Name="total2" DataType="System.Decimal"/>
<Column Name="total3" DataType="System.Decimal"/>
<Column Name="total4" DataType="System.Decimal"/>
<Column Name="total5" DataType="System.Decimal"/>
</BusinessObjectDataSource>
</BusinessObjectDataSource>
<Total Name="Total" Expression="[student_news_graduate_program.data.sum_percentage]" Evaluator="Data2" PrintOn="ReportSummary1"/>
</Dictionary>
<ReportPage Name="Page1" RawPaperSize="9" Watermark.Font="Arial, 60pt">
<PageHeaderBand Name="PageHeader1" Width="718.2" Height="122.85">
<TableObject Name="Table1" Top="66.15" Width="718.2" Height="56.7">
<TableColumn Name="Column1" Width="37.8"/>
<TableColumn Name="Column2" Width="292.95"/>
<TableColumn Name="Column3" Width="236.25"/>
<TableColumn Name="Column4" Width="151.2"/>
<TableRow Name="Row1" Height="56.7">
<TableCell Name="Cell1" Border.Lines="All" Fill.Color="InactiveCaption" Text="ลำดับ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell2" Border.Lines="All" Fill.Color="InactiveCaption" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text4" Top="28.35" Width="292.95" Height="28.35" Text="พื้นที่การศึกษา" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text1" Width="292.95" Height="28.35" Border.Lines="Bottom" Text="กลุ่มสาขาวิชา และหลักสูตรปริญญา" HorzAlign="Center" VertAlign="Bottom" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell3" Border.Lines="All" Fill.Color="InactiveCaption" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text10" Width="75.6" Height="56.7" Border.Lines="Right, Top" Text="ปริญญาเอก" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text11" Left="75.6" Width="85.05" Height="56.7" Border.Lines="Left, Right, Top" Text="ปริญญาโท+เอก" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text12" Left="160.65" Width="75.6" Height="56.7" Border.Lines="Left, Top" Text="ปริญญาโท" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
<TableCell Name="Cell4" Border.Lines="All" Fill.Color="InactiveCaption" HorzAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TextObject Name="Text9" Left="75.6" Width="75.6" Height="56.7" Border.Lines="Left, Top" Text="ร้อยละ" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TextObject Name="Text8" Width="75.6" Height="56.7" Border.Lines="Right, Top" Text="รวม" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
</TableCell>
</TableRow>
</TableObject>
<TextObject Name="Text2" Width="718.2" Height="28.35" Text="รายงานนักศึกษาเข้าใหม่ ปีการศึกษา [student_news_graduate_program.academic_year_name_th]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
<TextObject Name="Text3" Top="28.35" Width="718.2" Height="28.35" Text="จำนวนนักศึกษาเข้าใหม่ หลักสูตรบัณฑิตศึกษา จำแนกตามคณะ และวิทยาลัย" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
</PageHeaderBand>
<DataBand Name="Data1" Top="126.85" Width="718.2">
<DataBand Name="Data2" Top="130.85" Width="718.2" Height="28.35" DataSource="data">
<TableObject Name="Table14" Width="718.2" Height="28.35" Border.Lines="All">
<TableColumn Name="Column70" Width="37.8"/>
<TableColumn Name="Column71" Width="292.95"/>
<TableColumn Name="Column72" Width="75.6"/>
<TableColumn Name="Column73" Width="85.05"/>
<TableColumn Name="Column78" Width="75.6"/>
<TableColumn Name="Column79" Width="75.6"/>
<TableColumn Name="Column80" Width="75.6"/>
<TableRow Name="Row14" Height="28.35">
<TableCell Name="Cell110" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell111" Border.Lines="All" Text="[student_news_graduate_program.data.faculty_academy_name_th]" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell112" Border.Lines="All" Text="[student_news_graduate_program.data.ph_degree]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell113" Border.Lines="All" Text="[student_news_graduate_program.data.ph_master_degree]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell118" Border.Lines="All" Text="[student_news_graduate_program.data.master_degree]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell119" Border.Lines="All" Text="[student_news_graduate_program.data.sum_degree]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell120" Border.Lines="All" Text="[student_news_graduate_program.data.sum_percentage]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" TextFill.Color="DarkRed" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
</DataBand>
</DataBand>
<ReportSummaryBand Name="ReportSummary1" Top="163.2" Width="718.2" Height="94.5">
<TableObject Name="Table15" Width="718.2" Height="28.35" Border.Lines="All">
<TableColumn Name="Column81" Width="37.8"/>
<TableColumn Name="Column82" Width="292.95"/>
<TableColumn Name="Column83" Width="75.6"/>
<TableColumn Name="Column84" Width="85.05"/>
<TableColumn Name="Column85" Width="75.6"/>
<TableColumn Name="Column86" Width="75.6"/>
<TableColumn Name="Column87" Width="75.6"/>
<TableRow Name="Row15" Height="28.35">
<TableCell Name="Cell121" Fill.Color="InactiveCaption" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell122" Border.Lines="All" Fill.Color="InactiveCaption" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell123" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_graduate_program.data.total1]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell124" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_graduate_program.data.total2]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell125" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_graduate_program.data.total3]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell126" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_graduate_program.data.total4]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Formats>
<NumberFormat DecimalDigits="0"/>
<GeneralFormat/>
</Formats>
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell127" Border.Lines="All" Fill.Color="InactiveCaption" Text="[Total]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow>
</TableObject>
<TextObject Name="Text13" Top="37.8" Width="718.2" Height="28.35" Text="ข้อมูล ณ วันที่ [student_news_graduate_program.data_date]" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
<TextObject Name="Text14" Top="66.15" Width="718.2" Height="28.35" Text="ที่มา สำนักส่งเสริมวิชาการและงานทะเบียน" VertAlign="Center" Font="TH Sarabun New, 15pt"/>
</ReportSummaryBand>
</ReportPage>
</Report>

View File

@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="01/26/2023 14:28:56" ReportInfo.CreatorVersion="2022.1.0.0"> <Report ScriptLanguage="CSharp" ReportInfo.Created="09/14/2021 15:20:39" ReportInfo.Modified="01/26/2023 15:27:28" ReportInfo.CreatorVersion="2022.1.0.0">
<Dictionary> <Dictionary>
<BusinessObjectDataSource Name="student_news_year" ReferenceName="student_news_year" DataType="null" Enabled="true"> <BusinessObjectDataSource Name="student_news_year" ReferenceName="student_news_year" DataType="null" Enabled="true">
<Column Name="academic_year_name_th1" DataType="System.String"/> <Column Name="academic_year_name_th1" DataType="System.String"/>
@@ -83,14 +83,46 @@
<TableRow Name="Row14" Height="28.35"> <TableRow Name="Row14" Height="28.35">
<TableCell Name="Cell110" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell110" Text="[Row#]" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell111" Border.Lines="All" Text="[student_news_year.data.faculty_academy_name_th]" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell111" Border.Lines="All" Text="[student_news_year.data.faculty_academy_name_th]" VertAlign="Center" Font="TH Sarabun New, 11pt"/>
<TableCell Name="Cell112" Border.Lines="All" Text="[student_news_year.data.bachelors_degree_science1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell112" Border.Lines="All" Text="[student_news_year.data.bachelors_degree_science1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell113" Border.Lines="All" Text="[student_news_year.data.bachelors_degree_social1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <Highlight>
<TableCell Name="Cell118" Border.Lines="All" Text="[student_news_year.data.bachelors_degree_total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
<TableCell Name="Cell119" Border.Lines="All" Text="[student_news_year.data.bachelors_degree_science2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> </Highlight>
<TableCell Name="Cell120" Border.Lines="All" Text="[student_news_year.data.bachelors_degree_social2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> </TableCell>
<TableCell Name="Cell122" Border.Lines="All" Text="[student_news_year.data.bachelors_degree_total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <TableCell Name="Cell113" Border.Lines="All" Text="[student_news_year.data.bachelors_degree_social1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<TableCell Name="Cell123" Border.Lines="All" Text="[student_news_year.data.sum_percentage_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <Highlight>
<TableCell Name="Cell124" Border.Lines="All" Text="[student_news_year.data.sum_percentage_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt"/> <Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell118" Border.Lines="All" Text="[student_news_year.data.bachelors_degree_total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell119" Border.Lines="All" Text="[student_news_year.data.bachelors_degree_science2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell120" Border.Lines="All" Text="[student_news_year.data.bachelors_degree_social2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell122" Border.Lines="All" Text="[student_news_year.data.bachelors_degree_total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell123" Border.Lines="All" Text="[student_news_year.data.sum_percentage_science]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell124" Border.Lines="All" Text="[student_news_year.data.sum_percentage_social]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 11pt">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow> </TableRow>
</TableObject> </TableObject>
</DataBand> </DataBand>
@@ -110,14 +142,46 @@
<TableRow Name="Row15" Height="28.35"> <TableRow Name="Row15" Height="28.35">
<TableCell Name="Cell125" Fill.Color="InactiveCaption" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/> <TableCell Name="Cell125" Fill.Color="InactiveCaption" Text="รวมทั้งสิ้น" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold" ColSpan="2"/>
<TableCell Name="Cell126" Border.Lines="All" Fill.Color="InactiveCaption" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell126" Border.Lines="All" Fill.Color="InactiveCaption" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/>
<TableCell Name="Cell127" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell127" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total1]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TableCell Name="Cell128" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <Highlight>
<TableCell Name="Cell129" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
<TableCell Name="Cell130" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> </Highlight>
<TableCell Name="Cell131" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> </TableCell>
<TableCell Name="Cell132" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <TableCell Name="Cell128" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total2]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<TableCell Name="Cell133" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <Highlight>
<TableCell Name="Cell134" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold"/> <Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell129" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total3]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell130" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total4]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell131" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total5]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell132" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total6]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="0" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell133" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total7]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
<TableCell Name="Cell134" Border.Lines="All" Fill.Color="InactiveCaption" Text="[student_news_year.data.total8]" Format="Number" Format.UseLocale="true" Format.DecimalDigits="2" HorzAlign="Center" VertAlign="Center" Font="TH Sarabun New, 12pt, style=Bold">
<Highlight>
<Condition Expression="Value &lt; 0" Font="Arial, 10pt"/>
</Highlight>
</TableCell>
</TableRow> </TableRow>
</TableObject> </TableObject>
<TextObject Name="Text21" Top="66.15" Width="793.8" Height="28.35" Text="ที่มา สำนักส่งเสริมวิชาการและงานทะเบียน" VertAlign="Center" Font="TH Sarabun New, 15pt"/> <TextObject Name="Text21" Top="66.15" Width="793.8" Height="28.35" Text="ที่มา สำนักส่งเสริมวิชาการและงานทะเบียน" VertAlign="Center" Font="TH Sarabun New, 15pt"/>