Hi everyone,
I have Select statement
Select cust,orderID,partID,date,Qty from Table1 order by cust into cursor c_report
I need to go through each record in this c_report and make date field to closest Friday(ship date).I tried something like this
Select c_report
Scan
do While Dow(back_report.ordate )<>6
back_report.ordate=back_report + 1
EndDo
EndScan
but I have message "Object c-report not found"
Beeing new to VFP ,I'm not sure how to get around this problem.
Thanks for any help,
Lyn
I have Select statement
Select cust,orderID,partID,date,Qty from Table1 order by cust into cursor c_report
I need to go through each record in this c_report and make date field to closest Friday(ship date).I tried something like this
Select c_report
Scan
do While Dow(back_report.ordate )<>6
back_report.ordate=back_report + 1
EndDo
EndScan
but I have message "Object c-report not found"
Beeing new to VFP ,I'm not sure how to get around this problem.
Thanks for any help,
Lyn