Link to home
Start Free TrialLog in
Avatar of windows1
windows1

asked on

SQL Problem

I have a situation where I take data from my access query and send it to an excel spreadsheet to populate a chart.

I have about 25 or 30 sql statements, I am having problems with calculations on one. Here is the statement:

dim vw as rs
dim wb as workbook
Dim grosslossanr2sql As String

grosslossanr2sql = "SELECT ([gross loss])*12/AVG([AVG O/S])FROM QUERY1 WHERE [CLIENT NAME]='client name' AND [YEAR]='1998'"

Set wb = GetObject("c:\WINDOWS\desktop\performance\DASH.XLS")
Set VW = CurrentDb.OpenRecordset(grosslossanr2sql)

.Sheets("sheet1").Range("Aj6:Aj17").CopyFromRecordset VW



Anyway the formula needs to be:  GrossLosses*12/average(avg o/s)

I have query1 set up by month and year.   [avg o/s] needs to be a YTD average. basicaly I am not averaging the Gross Loss, I need to leave it what ever number it is for that month multiplied by 12, but the Avg O/S field needs to be a YTD Average.  How do I fix this?





Avatar of tuvi
tuvi
Flag of United States of America image

I am still confused:

>>> So if it is June, Avg o/s needs to be an average of jan, feb,march,april, may and june.  <<<

>>> but the Avg O/S field needs to be a YTD Average <<<

What do you mean?
I need more info? In your table, is there a month field? Also, the [avg o/s] field in your table, is it YTD for that month or it is just for that month?


The formula:

GrossLosses*12/average(avg o/s)

Let's say it is June you want. So, you need [avg o/s] to be YTD up to June?
Avatar of windows1
windows1

ASKER

Edited text of question
I edited the question, I had a typo sorry.

The [avg o/s] needs to be ytd as of the last month in the dataset for that year.  But it needs to know the difference, since I am deleting and re-importing all the data for 97 and 98 each month.
so when It comes up with an average of [avg 0/s] for january it will be for 1 month, for february it will be an average of jan and feb, for march it will be for jan, feb and march.

David
David


Edited text of question
One way is to replace [AVG O/S] with:
DAvg("[AVG O/S]", "QUERY1", "WHERE [CLIENT NAME]='client name' AND [YEAR]='1998'")

It is giving syntax errors, I replaced it with this, what is wrong with it?

grosslossanr2sql = "SELECT ([gross loss])*12" / DAvg("[AVG O/S]", "QUERY1", "WHERE [CLIENT NAME]='client name' AND [YEAR]='1998'")
<b>
Sorry; I forgot that your SQL was being constructed as a literal. You should replace each " with a pair of ""
</b>
Thanks for your help, I think I am getting there but I still get an error.  when I execute this, I get an error message saying that a reserved word is missing or in error.

grosslossanr1sql = "SELECT ([gross loss])*12 / DAvg(""[AVG O/S]"", ""QUERY1"", ""WHERE [CLIENT NAME]='client name' AND [YEAR]='1998'"")"

any other ideas?
Adjusted points to 100
I think your problem is not the syntax but the formula itself. I still don't get it, still vague about what you want. In other words, what the formula means.

Each of your record there is a [gross loss] and [avg 0/s] YTD. Then what does [gross loss]*12 means?
Lets put it this way, it is not the formula. The *12 multiplies it times 12 months.
 If I use this sql:

grosslossanr1sql = "SELECT ([gross loss])*12/[AVG O/S] FROM QUERY1 WHERE [CLIENT NAME]='client name' AND [YEAR]='1998'"

it works fine.

if I type in:grosslossanr1sql = "SELECT AVG([gross loss])*12/AVG[AVG O/S] FROM QUERY1 WHERE [CLIENT NAME]='client name' AND [YEAR]='1998'"

ALSO WORKS FINE (except I only get an overall average instead of a different average for each month)




The occurs when I try to AVERAGE OR SUM ONE FIELD AND I DON'T TRY TO AVERAGE OR SUM THE OTHER. such as this:

"SELECT ([gross loss])*12/AVG[AVG O/S] FROM QUERY1 WHERE [CLIENT NAME]='client name' AND [YEAR]='1998'"

Thanks
ASKER CERTIFIED SOLUTION
Avatar of ramrom
ramrom
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
"The occurs when I try to AVERAGE OR SUM ONE FIELD AND I DON'T TRY TO AVERAGE OR SUM THE OTHER." True - if you use a domain aggregate function (such as AVG()) you are creating a totals query. Each item in the select clause must either be either a domain aggregate function or in the group by clause.
Ramrom Thanks I appreciate your answer, It seems to work much better, for somereason the calculations are slightly different than what they should be, for example, 1.94 instead of 1.99  9.79 instead of 9.91. Only one is exact. they are rounded exactly, ??

Thanks!  If you have any suggestions why the numbers are slightly different I appreciate it, but you answered my question!

David