Hi, I have a time format like below (hhss) and I want to round seconds as below. What is the best option to achieve this?
00:00:22.464 > 00:00:22
00:01:22.825 > 00:01:23
Thanks in advance for your feedback.
Hi, I have a time format like below (hhss) and I want to round seconds as below. What is the best option to achieve this?
00:00:22.464 > 00:00:22
00:01:22.825 > 00:01:23
Thanks in advance for your feedback.
Have you tried the DateTimeRounder with unit to round: seconds and the round-off option nearest?
This works like a charm. Thank you