Hi guys,
I am adding the progress bar symbols into my sheet and I've got most of it working. I just cannot get that last logic check to work. Here's my formula;
=IFERROR( IF( AND( NOT( ISBLANK([Order Received]@row) ), ISBLANK([Chair Ship Date]@row), ISBLANK([Chair Install Date Actual]@row) ), "Quarter", IF( AND( NOT( ISBLANK([Order Received]@row) ), NOT( ISBLANK([Chair Ship Date]@row) ), ISBLANK([Chair Install Date Actual]@row) ), "Half", IF( AND( NOT( ISBLANK([Order Received]@row) ), NOT( ISBLANK([Chair Ship Date]@row) ), NOT( ISBLANK([Chair Install Date Actual]@row) ) ), "Three Quarter", IF( AND( NOT( ISBLANK([Order Received]@row) ), NOT( ISBLANK([Chair Ship Date]@row) ), NOT( ISBLANK([Chair Install Date Actual]@row) ), IF( [Chair Install Date Actual]@row <= [Today Helper]@row, TRUE, FALSE ) ), "Full", "Empty" ) ) ) ), "" )
The portion that is to give me the "FULL" progress bar is not working. Thoughts? Advice?