I'm trying to set up our Carpentry Shop's Progress Bar by how many hours they've used from the total hours they were assigned to use for the project. The following screenshot shows an example. The carpentry shop was assigned a total of 80 hours to use. So far they've used 40 hours. The progress bar's formula then updates to the "Half" symbol. I was able to get this formula to function:
=IF([Total Carp Used Hrs.]774 = 0, "Empty", IF([Total Carp Hrs.]774 <= [Total Carp Used Hrs.]774, "Full", IF([Total Carp Used Hrs.]774 = 1 / 2, [Total Carp Hrs.]774, "Half")))
But when I try to set up the "Quarter" and the "Three Quarter", the cell is giving me an INCORRECT ARGUMENT result:
=IF([Total Carp Used Hrs.]772 = 0, "Empty", IF([Total Carp Hrs.]772 <= [Total Carp Used Hrs.]772, "Full", IF([Total Carp Used Hrs.]772 = 1 / 2, [Total Carp Hrs.]772, "Half", IF([Total Carp Used Hrs.]772 = 1 / 4, [Total Carp Hrs.]772, "Quarter", IF([Total Carp Used Hrs.]772 = 3 / 4, [Total Carp Hrs.]772, "Three Quarter")))))
Maybe I'm using the wrong formula?? Can anyone help?
Thank you