标签: sql ms-access
这在Access程序中用于获取上个月的数据。如何对其进行编码以获取当天的数据?
localStorage.removeItem('variableName');
答案 0 :(得分:0)
Date()返回当天。要获取所有记录直至当天,您的表达式必须更改为
Date()
NPDateE <= Date()
有关Date()的详细信息,请参阅此office tutorial。
答案 1 :(得分:0)
如果您当前在VBA中以这种方式设置变量 NPDateE :
NPDateE = DateAdd("m", -1, DateSerial(Year(Date), Month(Date) + 1, 0))
你需要的就是这个:
NPDateE = Date