What am looking for is .. Something like this
I need one column in a query to be something like this abs(MAX([Field 1],
[Field2],[Field3],etc)
Here an SQL view of something I tried but didnt seem to work
INSERT INTO [Hamburg Db] ( Test, [Project Number], [Pass Number], RTD1, RTD10,
RTD11, RTD5, RTD4, RTD3, RTD2, RTD6, RTD7, RTD8, RTD9 )
SELECT Abs(Max(([Excel_Data!RTD1:RTD11]))) AS Expr1, Excel_Data.PROJECT_NAME,
Excel_Data.PASS_NUMBER, Excel_Data.RTD1, Excel_Data.RTD10, Excel_Data.RTD11,
Excel_Data.RTD5, Excel_Data.RTD4, Excel_Data.RTD3, Excel_Data.RTD2,
Excel_Data.RTD6, Excel_Data.RTD7, Excel_Data.RTD8, Excel_Data.RTD9
FROM Excel_Data
GROUP BY Excel_Data.PROJECT_NAME, Excel_Data.PASS_NUMBER, Excel_Data.RTD1,
Excel_Data.RTD10, Excel_Data.RTD11, Excel_Data.RTD5, Excel_Data.RTD4,
Excel_Data.RTD3, Excel_Data.RTD2, Excel_Data.RTD6, Excel_Data.RTD7,
Excel_Data.RTD8, Excel_Data.RTD9;
Where you can see after the SELECT I have Abs(Max(([Excel_Data!RTD1:RTD11])))
,
I'm having a bit of trouble picturing your need. Could you post a row or two of
data and your expected results
[quoted text clipped - 10 lines]