It just started happening to my query, I was trying to make another query like this one :
And I only got this far:
And it says that the expression is typed incorrectly or too complex.. happend to anyone else before?
Code:
SELECT [Personnel (2008)].[Room/Location], (Abs(Sum([Personnel (2008)].[Alert]))) AS [# of Above Alert], (FormatPercent([# of Above Alert]/[Total Personnel Samples])) AS [% of Above Alert], (Abs(Sum([Personnel (2008)].[Action]))) AS [# of Above Action], (FormatPercent(([# of Above Action]/[Total Personnel Samples]))) AS [% of Above Action]
FROM [Personnel (2008)] INNER JOIN [Final - Total Samples By Date (Personnel)] ON [Personnel (2008)].[Room/Location]=[Final - Total Samples By Date (Personnel)].[Room/Location]
GROUP BY [Personnel (2008)].[Room/Location], [Final - Total Samples By Date (Personnel)].[Total Personnel Samples];
And I only got this far:
Code:
SELECT [Rodac Plates (2008)].[Room/Location], (Abs(Sum([Alert]))) AS [# of Above Alert]
FROM [Rodac Plates (2008)] INNER JOIN [Final - Total Samples By Date (Rodac Plates)] ON [Rodac Plates (2008)].[Room/Location] = [Final - Total Samples By Date (Rodac Plates)].[Room/Location]
GROUP BY [Rodac Plates (2008)].[Room/Location];
And it says that the expression is typed incorrectly or too complex.. happend to anyone else before?