D
Dimitris Nikolakakis
I have the following qry:
SELECT [OrdersTx].[OrderNo],
LTRIM(Format([OrdersTx.StorageItem],"@@@@@@@@@@@@@@@@@@@@")) AS StorageItem,
[OrdersTx].[Quantity]
FROM OrdersTx
WHERE [Forms]![FOrders]!OrderID=[OrdersTx].[OrderNo] And
[OrdersTx].[typeID]="ORD";
and I have a button on the form FOrders that:
DoCmd.OutputTo acOutputQuery, "qOrder_XLS(IRWIN)", acFormatXLS,
"c:\order.xls", 0
1. Is there any better way to export the StorageItem as text? (in the table
is text 20)?
2. In a very strange way I get error after I press the button that there is
no field in the qry. I open the qry in design and I see no field. I have to
rewrite it and save it.
thanks
SELECT [OrdersTx].[OrderNo],
LTRIM(Format([OrdersTx.StorageItem],"@@@@@@@@@@@@@@@@@@@@")) AS StorageItem,
[OrdersTx].[Quantity]
FROM OrdersTx
WHERE [Forms]![FOrders]!OrderID=[OrdersTx].[OrderNo] And
[OrdersTx].[typeID]="ORD";
and I have a button on the form FOrders that:
DoCmd.OutputTo acOutputQuery, "qOrder_XLS(IRWIN)", acFormatXLS,
"c:\order.xls", 0
1. Is there any better way to export the StorageItem as text? (in the table
is text 20)?
2. In a very strange way I get error after I press the button that there is
no field in the qry. I open the qry in design and I see no field. I have to
rewrite it and save it.
thanks