query syntax - multiply a column by 10 into another column
I need help with query syntax in SQL. I have the following SQL statement:
select H.Agency,Count(distinct H.ActivityDate) as [# of days],SUM(Hours) as [Total Hours], ([Total Hours] * 10) as [Check Total], r.LastName,r.FirstName,r.BirthDate " & _"from tblCYEPHours H inner join tblCYEPRegistrations R on H.Regid = R.RegID Where h.[Hours] > 0 and h.Agency = 'Chicago Area Project' And h.ActivityDate >= '" & DTPicker1 & "' And h.ActivityDate <= '" & DTPicker2 & "' " & _"group by H.Agency,r.LastName,r.FirstName,r.BirthDate Order by H.Agency,r.LastName,r.FirstName
I have an error with the [Check Total] column calculation. I am trying to multiply the [Total Hours] by 10 for the [Check Total] column. What am I doing wrong?
select H.Agency,Count(distinct H.ActivityDate) as [# of days],SUM(Hours) as [Total Hours], (((Sum(Hours)) * 10) as [Check Total], r.LastName,r.FirstName,r.BirthDate " & _"from tblCYEPHours H inner join tblCYEPRegistrations R on H.Regid = R.RegID Where h.[Hours] > 0 and h.Agency = 'Chicago Area Project' And h.ActivityDate >= '" & DTPicker1 & "' And h.ActivityDate <= '" & DTPicker2 & "' " & _"group by H.Agency,r.LastName,r.FirstName,r.BirthDate Order by H.Agency,r.LastName,r.FirstName
Open in new window
I get incorrect syntax near keyword 'as'