I'd like to know if I can combine the two following formulas in some way so that I only need one column:
In the first below, I'm calculating the average number of minutes an editor spends on each page of a document. But, because I don't want to report the number with such precision, I have a second column with a formula to round the sum to the nearest whole number.
I'd rather not have to maintain and hide/unhide the extra column. Can I combine these two formulas?
=SUM(([# hours spent by contractor]28 * 60) / [actual # pages editor received]28)
=ROUND([Avg. min/page]28, 0)