Does anyone know how to make a formula that will do a calculation between the results of the 2 highlighted columns. For example something like this pseudo code: sum(round({hours})) / count({checkdate})
c
CD
09/24/2021, 6:23 PM
Can you explain in plain English what the result you want is?
r
Rob Cady
09/24/2021, 6:24 PM
hours per pay period worked. Total hours worked / number of paychecks.
Rob Cady
09/24/2021, 6:28 PM
the result will be an average of hrs worked per pay period. for example 240 hours worked / 6 paychecks = 40 hours
Rob Cady
09/24/2021, 7:44 PM
got the formula working btw. round(sum({hours}) / count(unique({checkdate})),2)
Rob Cady
09/24/2021, 7:44 PM
the trick was using formula text and setting summary type to max