Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi, I'm trying to query data from MS access 97. Is there any way that I can add the WHERE condition such that the query is executed on a certain input date. The Access table has the start date in it, and I want the query to run on any time frame, for example (I want to get the sum of POVALUE from February 1, 2006 until March 3, 2006). How can I do this or what should I modify from the code below? Thank you so much. Code: -------------------- MyQuery = "SELECT SUM(JOBACTIV.POVALUE) as sum FROM JOBACTIV WHERE JOBACTIV.JOBCLASS = 'S';" Set rs = db.OpenRecordset(MyQuery) rs.MoveFirst sum = rs.Fields("sum").value Cells(1, 1).Value = sum -------------------- -- wliong ------------------------------------------------------------------------ wliong's Profile: http://www.excelforum.com/member.php...o&userid=28343 View this thread: http://www.excelforum.com/showthread...hreadid=519883 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
If Statement to select a letter | Excel Worksheet Functions | |||
Trouble with select statement | Excel Programming | |||
SELECT statement | Excel Programming | |||
Adding SQL Select Statement | Excel Programming | |||
Best Way to Modify current IF() statement?????? | Excel Programming |