cmorales66
New Member
- Joined
- Mar 5, 2012
- Messages
- 7
Hi everyone. I know I may be missing a rookie link here, I'm just burned out at this point. Help.
I'd like to name my Processed Count column based on the Completed Column. If there is no date in Completed, then the Days are assumed Open: Open 7 Days or Less, Open 8-14 Days, etc. If there's a date on Completed, then Days are assumed processed: Processed in 7 Days or Less, Processed in 8-14 Days, etc. I have the formula below and it works with the Completed column empty but if there's a value, it returns FALSE. I'm missing that end piece to make it work. Any help is appreciated.
My current formula: =IF([@Completed]="",IF([@Days]<=7,"Open 7 Days or Less",IF([@Days]<=14,"Open 8-14 Days",IF([@Days]<=21,"Open 15-21 Days",IF([@Days]>21,"Open over 21 Days",IF([@Completed]<>"",IF([@Days]<=7,"Processed in 7 Days or Less",IF([@Days]<=14,"Processed in 8-14 Days",IF([@Days]<=21,"Processed in 15-21 Days",IF([@Days]>21,"Processed in over 21"))))))))))
I'd like to name my Processed Count column based on the Completed Column. If there is no date in Completed, then the Days are assumed Open: Open 7 Days or Less, Open 8-14 Days, etc. If there's a date on Completed, then Days are assumed processed: Processed in 7 Days or Less, Processed in 8-14 Days, etc. I have the formula below and it works with the Completed column empty but if there's a value, it returns FALSE. I'm missing that end piece to make it work. Any help is appreciated.
My current formula: =IF([@Completed]="",IF([@Days]<=7,"Open 7 Days or Less",IF([@Days]<=14,"Open 8-14 Days",IF([@Days]<=21,"Open 15-21 Days",IF([@Days]>21,"Open over 21 Days",IF([@Completed]<>"",IF([@Days]<=7,"Processed in 7 Days or Less",IF([@Days]<=14,"Processed in 8-14 Days",IF([@Days]<=21,"Processed in 15-21 Days",IF([@Days]>21,"Processed in over 21"))))))))))