How the calculation of the "Average wait time" field on a walk-up location queue worksIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } ul{ list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Symptoms The "Average wait time" field on a walk-up location queue is updated every time a walk-up technician accepts an incoming walk-up request from the portal. However, its actual calculation is not known. Release London Cause The calculation is done on the back-end of the system and cannot be changed. Resolution The calculation itself is started by the OOB business rule "Calculate Avg Wait Time for Queue" from the "interaction" table (sys_id = 67fb72d237330300a213a7f07e41f1a9)Within this business rule it's using the function "refreshAvgWaitTime()" which is actually a function from a back-end Java file. This Java function computes the average wait time as following: 1) Get the latest 20 "interaction" (the table that keeps track of the walk-up requests) records where state = Work in Progress for a particular queue location 2) Get their "wait_time" values 3) Add all of these up and divide it by 20 (or whatever valid records available at the time based on the query; i.e. if you only have 5 interaction records where state = Work in progress then it'll divide it by 5 only) 4) The resulting value would be the average which will then be updated to the "Average wait time" field on the location queue record (wu_location_queue) Additional Information Walk-up Experience Also note that the hint on the "Average wait time" field on wu_location_queue says, "Average wait time before an agent responds to the chat request. Computed by the SNC - Chat Queue Average Wait Time business rule on the chat_queue_entry table." However, this is not correct as that hint is specific to the Connect Support application only.