noveske
Board Regular
- Joined
- Apr 15, 2022
- Messages
- 120
- Office Version
- 365
- Platform
- Windows
- Mobile
- Web
F5: Input. Actual input: 14.78 (m)
O5: 14.7
B14: Current time. (1948)
C14: 0014
C14 will display the number of minutes, until B14 receives a time. Once B14 and C14 have values, they will add to the time.
Formulas in O5 and C14.
O5.
C14.
I need it to round up to a whole number at some point. Any decimal is to round up to the next whole number. Always. Even .01.
Can be anywhere. Just need C14 to display 0015, since that's what's being added.
O5: 14.7
B14: Current time. (1948)
C14: 0014
C14 will display the number of minutes, until B14 receives a time. Once B14 and C14 have values, they will add to the time.
Formulas in O5 and C14.
O5.
Excel Formula:
=LEFT(F5,SUM(LEN(F5)-LEN(SUBSTITUTE(F5,{"0","1","2","3","4","5","6","7","8","9"},""))))
C14.
Excel Formula:
=IFERROR(B14+TIME(,O5,0),0)
I need it to round up to a whole number at some point. Any decimal is to round up to the next whole number. Always. Even .01.
Can be anywhere. Just need C14 to display 0015, since that's what's being added.