Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 列:A 列有数据:时间 - 时间(例如:08:00:00-15:59:59) B 列有数据:值从 1 到 20。
我想看看 B 列中的值在几小时之间最大。
是否可以在 Excel 中执行此操作?
所以你想要这样的东西吗?
公式为:
c2
=LEFT($A2,8)
d2
=MID($A2,10,99)
e2
=D2-C2
f2
=HOUR(E2)
g2
=MIN(B2,F2)