PhilipCCFE
New Member
On Boingboing.net today there was a Clock that calculates wasted time at meetings -- http://feeds.boingboing.net/~r/boingboing/iBag/~3/wa8scbRULsg/clock-calculates-was.html
I had the thought of implementing something like that using excel.
Where F7 is the time (as entered at the start of the meeting).
however B$ the (=NOW[..]) cell returns a number I am not sure how to work with; its current value is 40317.05477
The requirement would be to have a decimal value for time, then multiply that by Hourly Rate, and Number of People, to resolve the current cost of the meeting
I had the thought of implementing something like that using excel.
Code:
Cost of Meeting
=NOW()-TIME(LEFT($F$7,2),RIGHT($F$7,2),0)
100 x 10 x 12.40
Hourly Rate People Time start
Where F7 is the time (as entered at the start of the meeting).
however B$ the (=NOW[..]) cell returns a number I am not sure how to work with; its current value is 40317.05477
The requirement would be to have a decimal value for time, then multiply that by Hourly Rate, and Number of People, to resolve the current cost of the meeting