Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
Maybe what you want is to conver the duration to text and add � Yes� if > 14 hours
ToText(Round(ToHours([Period Duration]),1))
& " Hours"
& If([Period Duration]>hours(14), " Yes")
ToText(Round(ToHours([Period Duration]),1))
& " Hours"
& If([Period Duration]>hours(14), " Yes")