Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
Jennifer,
If its a bug and you don't have months to wait or a fix, you can make a new field to convert the Duration field to say a formula numeric field for hours and also for the other field.
ToHours([my duration field])
Then you are comparing numbers to numbers. you might also want to round
round(ToHours([my duration field]),0.1)
as comparing fields to be equal can be messed up if there are small trailing decimals.
If its a bug and you don't have months to wait or a fix, you can make a new field to convert the Duration field to say a formula numeric field for hours and also for the other field.
ToHours([my duration field])
Then you are comparing numbers to numbers. you might also want to round
round(ToHours([my duration field]),0.1)
as comparing fields to be equal can be messed up if there are small trailing decimals.