Foxtable(狐表)用户栏目专家坐堂 → 时段计算


  共有4176人关注过本帖树形打印复制链接

主题:时段计算

帅哥,在线噢!
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110495 积分:562359 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2021/6/20 20:16:00 [显示全部帖子]

比如日期为: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个月就是上一季度的第一天,同样的方法计算即可

 回到顶部