Viewing 4 posts - 1 through 4 (of 4 total)
this works great TY!
however for some reason when i tried the query as posted, the numbers were off. (couldn't figure out why)
but when i changed it slightly to
select sum(col1)...
August 8, 2007 at 11:31 am
i tried this, but it doesn't work at all... says i have to start with "select" etc...
does this kinda of sql work in access?
August 8, 2007 at 11:30 am
oh man... thanks...
i'm retarded - just didn't realize at first that that's the same thing...
tyvm lynn
March 13, 2007 at 9:23 am
ok here is my statement in entirety
SELECT DISTINCTROW [tblTraderNames].TraderName, (Sum([tblTraderPnL].[Net P&L]))*(.9) AS [Money] , 'Net P&L' AS [Memo]
INTO tblTempReportNetPnL
FROM (tblTraderNames INNER JOIN tblTraderPnL ON tblTraderNames.TraderID = tblTraderPnL.TraderID) INNER JOIN...
March 13, 2007 at 8:42 am
Viewing 4 posts - 1 through 4 (of 4 total)