I have a rather complex aggregate query field that I need to make even more comlex. It is becoming too complex for my inexperienced programming mind.
I use Access to report out of a SQL Server-based database application. I cannot alter the application and therefore my queries need to overcome the many idiosyncrases that exist within this application. This application is used to document incoming and outgoing phone calls in our call center. The query in question produces data on call lengths. Consider the following aggregate expression within this query:
Call Time (min): Sum(IIf([Caller_Cd2]=””,(DateDiff(“s”,[time_in],[time_out])/60),(DateDiff(“s”,[time_in],[time_out])/60)+CInt([caller_cd2])))
This field determines whether Caller_Cd2 is populated or not (we use this field to enter a positive or negative value to manually alter the total call time), then calculates the total call time in minutes, summing the entire date range. The problem is that sometimes the application does not populate the [time_out] field, which in turn produces an error in my query. I have attempted to add an additional IIF statement to test and see if the [time_out] field has been populated. I could not get it to work out– too complicated for me. I don’t think a SWITCH statement will work, either, since this isn’t your typical nested IIF statement.
Any ideas?