Forum Discussion
HOURS, MINUTES AND SECONDS
- Anonymous4 years ago
Hi Faber13 ,
If [Horas Chegada HH:MM:SS] is a calculated column, you can try to create a new calculated column.
Column 2 = IF(VALUE(RIGHT([Column],2))=60,[Column]+40)If [Horas Chegada HH:MM:SS] is a measure, try to create a new measure.
Measure = IF(VALUE(RIGHT([Horas Chegada HH:MM:SS],2))=60,[Horas Chegada HH:MM:SS]+40)The solution is that their essence is still a decimal number, judging the two digits at the end, and adding and subtracting them.
You can download the pbix file for more details.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Faber13 ,
If [Horas Chegada HH:MM:SS] is a calculated column, you can try to create a new calculated column.
Column 2 = IF(VALUE(RIGHT([Column],2))=60,[Column]+40)
If [Horas Chegada HH:MM:SS] is a measure, try to create a new measure.
Measure = IF(VALUE(RIGHT([Horas Chegada HH:MM:SS],2))=60,[Horas Chegada HH:MM:SS]+40)
The solution is that their essence is still a decimal number, judging the two digits at the end, and adding and subtracting them.
You can download the pbix file for more details.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.