gdanalakshmi
Registered User.
- Local time
- Today, 06:57
- Joined
- Nov 26, 2002
- Messages
- 102
I have a query that produces only row output at any given time.
The outout is
Q1 Q2 Q3 Q4
1 2 3 4
I want to fill the output of the query in a listbox. THe listbox contents should be like
Loop Time EstimatedTime Difference(Time - Estimated Time)
Q1 1 2 -1
Q2 2 3 -1
Q3 3 4 -1
Q4 4 4 0
The Time field is generated by the query and Estimated time are all contants and Difference is caluculated dynamically.
How do I implement the above? Should I use the sql query in VBA and manipulate or is there anyither better way ?
The outout is
Q1 Q2 Q3 Q4
1 2 3 4
I want to fill the output of the query in a listbox. THe listbox contents should be like
Loop Time EstimatedTime Difference(Time - Estimated Time)
Q1 1 2 -1
Q2 2 3 -1
Q3 3 4 -1
Q4 4 4 0
The Time field is generated by the query and Estimated time are all contants and Difference is caluculated dynamically.
How do I implement the above? Should I use the sql query in VBA and manipulate or is there anyither better way ?