murray83
Games Collector
- Local time
- Today, 22:23
- Joined
- Mar 31, 2017
- Messages
- 830
Hi All
have exhasusted AI and google help so thought would actually ask some proper smart people ( me not included )
so i have the following SQL
which for the most copies it fine apart from the OrderNo as it shows up like this in the tbl
am at a loss to why, but hope someone here will hold the key/secret
have exhasusted AI and google help so thought would actually ask some proper smart people ( me not included )
so i have the following SQL
SQL:
INSERT INTO tblForCSV_main ( OrderNo, ProductCode, Qty )
SELECT Mid([RawData], InStr([RawData], "Booking Ref:") + 12, 12) AS BookingRef, Mid([RawData], InStr([RawData], "Pallets") + 21, 13) AS HSProductCode, Mid([RawData], InStr([RawData], "Pallets") + 68, 5) AS Qty
FROM TempRawData
WHERE TempRawData.RawData IS NOT NULL;
which for the most copies it fine apart from the OrderNo as it shows up like this in the tbl
am at a loss to why, but hope someone here will hold the key/secret