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.
我不知道如何在excel中做到这一点:
如果 A1 / 6 rest != 0,则将 A1 舍入为下一个 6 的倍数。
谢谢。
这正是 CEILING 函数所做的。
=CEILING(A1, 6)
这会将 A1 舍入到下一个 6 的倍数。