Hi,
I want to filter multiple records in a same field (pono) like;
m_pono = "PO100982,PO101032,PO101144,PO101158,PO101214,PO101239,PO101254"
I want to use "where" like (where pono in(&m_pono)) in above code for the purpose of filter only those records which contains these pono no.
Thanks
Saif
I want to filter multiple records in a same field (pono) like;
m_pono = "PO100982,PO101032,PO101144,PO101158,PO101214,PO101239,PO101254"
Code:
Select pono, ;
podate, ;
pcode, ;
full_name, ;
refno,;
SUM(Original) As original,;
SUM(delivered) As delivered, ;
remarks,;
reqby,;
enteredby ;
FROM ViewPo ;
GROUP By pono,podate,pcode,full_name,refno,remarks,reqby,enteredby ;
ORDER By podate ;
INTO Cursor poview Readwrite
I want to use "where" like (where pono in(&m_pono)) in above code for the purpose of filter only those records which contains these pono no.
Thanks
Saif