You would expect the fields in the new table to be the same as those in
tblELR.
Which field is the Binary?
And what type was it in tblELR?
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Reply to group, rather than allenbrowne at mvps dot org.
Dave F said:
The table I'm looking at appears to have been created via a make table
query,
which query's SQL is the following:
SELECT tblELR.ID,
tblELR.[Effective Date],
"N/A" AS [Asset Number],
tblELR.Description,
tblELR.Vendor,
"N/A" AS [Manufacturer Name],
[Amount DR]-[Account CR] AS Cost,
Null AS CurrentUnits,
Null AS [Deprn Amount],
Null AS [Deprn Reserve],
Null AS Nbv,
Null AS [Life In Months],
"N/A" AS [Location Key],
"N/A" AS [Location Description],
"One-time expense" AS [Major Category],
"N/A" AS [Minor Category],
"N/A" AS [Serial Number],
" N/A" AS [Tag Number],
Null AS [Ytd Deprn],
" One-time service" AS [Asset Type],
"N/A" AS [Book Type Code],
tblELR.Corp,
tblELR.Expense,
tblELR.[Manager 1],
tblELR.[Manager 2],
tblELR.Account,
"N/A" AS [Deprn Expense Account],
"N/A" AS [Deprn Reserve Account],
tblELR.Entity,
"N/A" AS [Tax Location Code],
"N/A" AS [Accounting Key],
"N/A" AS [Asset Key],
"N/A" AS [Project Number],
tblELR.[Effective Date] AS [Creation date],
tblELR.[Invoice Date],
tblELR.Invoice, Null AS PONumber,
"N/A" AS [Payable Batch Name],
"ELR" AS [Feeder System Name],
tblELR.[Amount DR], tblELR.[Account CR],
2 AS ExpenseType,
0 AS MPRLineID
INTO [ELR Records to Add]
FROM tblELR;