how sum a sum result?

D

Derek

Hi there
I calculated the time use "=Sum(DateDiff("n",[StartDateTime],[EndDateTime]))" this cell named WorkTime/ I try to sum all workTime valume use =Sum([WorkTime]). But it is not working. the system ask me input value WorkTime?
IS there have any other way to do that?

Thank you

Derek
 
R

Rick Brandt

Derek said:
Hi there
I calculated the time use "=Sum(DateDiff("n",[StartDateTime],[EndDateTime]))"
this cell named WorkTime/ I try to sum all workTime valume use =Sum([WorkTime]).
But it is not working. the system ask me input value WorkTime?
IS there have any other way to do that?

You have to sum the original expression, not the control that holds it.

=Sum(Sum(DateDiff("n",[StartDateTime],[EndDateTime])))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top