I have a data field named “timeinterval” containing seconds. I’ve created a calculated field to convert these seconds into “HH:MM:SS” format. However, the calculated field is currently in string format instead of integer, making it non-aggregatable. My goal is to find the total time in “HH:MM:SS” format.
sadly I don’t think what you plan is possible. There is no appropriate datatype and that concat with ‘,’ disqualifies it as an int. You best bet would be to calculate with the seconds from the timeinterval column and change that result into your ‘HH:mm:SS’ format.
Hi @robert.eibers, Thank you for your time. I implemented the suggestions you provided, and while it is working fine, the results are not exactly what I was hoping for.
@teja1 are you still running into this problem or is @robert.eibers suggestion serving as a good workaround? Can you break down more what you mean by the solution is not what you were hoping for?
Hi @duncan, thank you for reaching out. I’ve managed to resolve the issue and figured out how to make the time (HH:MM:SS) aggregatable. I appreciate your concern!