Hey
I have a table of returns. It is set up like this:
ProductID..MonthlyDate...Returns...
Now i have a query running to only show the negative returns. It leaves the positive returns Null
IIF(Return<0, Return, "")
Now I then run a query to get basic statistics. Standard Deviation. Variance, and average.
But It will not run. I know it is because there are null values.. I have tried making them zero, or using the NZ() function, but this affects the statitics I want to calculate.
Any ideas how to work around this? Thanks,