for each EOS in EOS_Report_Form [LTE_Site_ID == input.LTE_Site_ID] sort by Date_field desc
{
TN = Tech_Names [ID == EOS.Technician_Name];
S = ALU_Items [ID == EOS.Scope];
if (EOS.Site_Completed1 == "Yes")
{
show Details;
input.Details = "Technician Name:" + " " + TN.Name + " " + "Date Completed:" + " " + EOS.Date_field + " " + "Scope of Work Completed:" + " " + S.ALU_Item_Name;
}
}