--
比如日期为:2021-5-13,那么本季度的时间范围就是:2021-4-1~2021-6-30,按日期排序找出这个范围之内的最后一天的数据就是本季度末的数据
dim d as date = "05/13/2021"
dim d1 as date
if d.month >= 1 andalso d.month <= 3 then
d1 = new date(d.year,1,1)
elseif d.month >= 4 andalso d.month <= 6 then
d1 = new date(d.year,4,1)
....
end if
dim dr as datarow = datatables("表A").find("日期 >=#" & d1 & "# and 日期 <#" & d1.addmonths(3) & "#","日期 desc")
dr就是这个范围之内的最后一天的数据
d1往前推3个月就是上一季度的第一天,同样的方法计算即可