恆諗 2017-1-26 17:00
如題
[table] [tr] [td=1,1,184]Fri 27 Jan 2017[/td] [td=1,1,64]18:00[/td] [/tr] [tr] [td]Mon 30 Jan 2017[/td] [td]11:00[/td] [/tr] [tr] [td]Diffenence(exclude sat & sun)[/td] [td]??[/td] [/tr][/table]
[[i] 本帖最後由 恆諗 於 2017-1-26 05:21 PM 編輯 [/i]]
ae86forum 2017-1-27 10:31
[quote]原帖由 [i]恆諗[/i] 於 2017-1-26 17:00 發表 [url=http://www.discuss.com.hk/redirect.php?goto=findpost&pid=455407538&ptid=26406433][img]http://www.discuss.com.hk/images/common/back.gif[/img][/url]
如題
Fri 27 Jan 2017 18:00 Mon 30 Jan 2017 11:00 Diffenence(exclude sat & sun) ?? [/quote]
要計時間差好易,但唔計星期六日就要寫CODE
時間差就咁將兩個時間相減,再選Custom Number Format [h]:mm:ss 就OKAY:
=“30 Jan 2017 11:00" - "27 Jan 2017 18:00"
得出2.70833333
選好format [h]:mm:ss 之後變成:
65:00:00
即65小時
恆諗 2017-1-27 10:55
[quote]原帖由 [i]ae86forum[/i] 於 2017-1-27 10:31 AM 發表 [url=http://computer.discuss.com.hk/redirect.php?goto=findpost&pid=455438380&ptid=26406433][img]http://computer.discuss.com.hk/images/common/back.gif[/img][/url]
要計時間差好易,但唔計星期六日就要寫CODE
時間差就咁將兩個時間相減,再選Custom Number Format [h]:mm:ss 就OKAY:
=“30 Jan 2017 11:00" - "27 Jan 2017 18:00"
得出2.70833333
選好format [h]:mm:ss 之 ... [/quote]
我都有寫開少少 VBA
可以講講如寫 code 要點寫嗎? 謝謝
ae86forum 2017-1-27 14:30
[quote]原帖由 [i]恆諗[/i] 於 2017-1-27 10:55 發表 [url=http://www.discuss.com.hk/redirect.php?goto=findpost&pid=455439348&ptid=26406433][img]http://www.discuss.com.hk/images/common/back.gif[/img][/url]
我都有寫開少少 VBA
可以講講如寫 code 要點寫嗎? 謝謝 [/quote]
我只想到LOOP每一日睇係咪星期六或日,係就減返24小時(頭尾兩日唔減24,係減剩下嘅時間)
iphonejb 2017-2-4 03:08
my answer in uploaded screen dump
iphonejb 2017-2-4 03:15
my answer in 3 screen dumps
I assume come/leave time can be on Saturday or Sunday but the formula will ignore
Formula in cell G6
=G5+H2*(24-I2)+H4*(I4-24)
[[i] 本帖最後由 iphonejb 於 2017-2-4 03:29 AM 編輯 [/i]]
marlin12 2017-2-5 10:23
=NETWORKDAYS(B4,B5) + IF(WEEKDAY(B4,11) < 6, -C4, 0) + IF(WEEKDAY(B5,11) < 6, C5-1, 0)