以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  怎么获取不重复日期?  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=94084)

--  作者:有点辣
--  发布时间:2016/12/14 21:46:00
--  怎么获取不重复日期?
表A有个"日期"列,怎么获取不重复的日期?
--  作者:rxfmrqq
--  发布时间:2016/12/14 21:58:00
--  

If e.IsFocusCell AndAlso e.Col.Name = "包装规格" Then
    e.Col.Combolist = DataTables("产品目录").GetComboListString("包装规格" )
End If

 

?????是这个么?


--  作者:有点辣
--  发布时间:2016/12/14 22:07:00
--  

Dim Dates As List(of Date) = DataTables("表A").GetValues("日期","日期 is not null")
For Each dt As Date In Dates
msgbox(format(dt,"MMdd"))
Next

 

 

我是想提取不重复日期,按月日的格式返回

上述代码无效,说不能将string转换为date


--  作者:有点蓝
--  发布时间:2016/12/14 23:08:00
--  
Dim Dates As List(of String) = DataTables("订单").SQLGetValues("format(日期,\'MMdd\')","日期 is not null")
--  作者:有点辣
--  发布时间:2016/12/24 15:32:00
--  
我把SQLGetValues改为了 GetValue ,就报错了:无法找到列 format(日期
我不想对订单表从后台取值,只想从可见行里取
应该怎么改?

--  作者:李睿涵
--  发布时间:2016/12/24 16:45:00
--  

\'MMdd\' 改为 "MMdd" 行不?

我猜的


--  作者:有点蓝
--  发布时间:2016/12/24 17:30:00
--  
只能使用SQLGetValues