Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() HI; I m writing excel vba, i would like to execute a SQL query : select * from receiver_line where purc_order_id+'/'+cast(purc_order_line_no as varchar(3)) +'/'+receiver_id+'/'+cast(line_no as varchar(3)) not in( select purc_order_id+'/'+cast(purc_order_line_no as varchar(3)) +'/'+receiver_id+'/'+cast(receiver_line_no as varchar(3)) from payable_line where receiver_id is not null ) may i know how do i write it in vba? can it be like the following? strSql = "select * from receiver_line" & _ "where purc_order_id+'/'+convert(char(3), purc_order_line_no)+'/'+receiver_id+'/'+convert(char(3),line_no)" & _ "not in( select purc_order_id+'/'+convert(char(3),purc_order_line_no)+'/'+receiver_id+'/'+convert(char(3),receiver_line_no)" & _ "from payable_line where receiver_id is not null )" i keep on getting error, can anyone correct me? thanks for your great help :) Doris -- doristsr ------------------------------------------------------------------------ doristsr's Profile: http://www.excelforum.com/member.php...o&userid=35881 View this thread: http://www.excelforum.com/showthread...hreadid=556758 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I find a value from one cell in a char string in another? | Excel Worksheet Functions | |||
How to retrieve certain char within a string? | Excel Discussion (Misc queries) | |||
How to verify the first char of the string in excel? | Excel Discussion (Misc queries) | |||
string/char CONTAINS function? | Excel Worksheet Functions | |||
last char of a string | Excel Programming |