Jliersenvlst
Apr 19, 2022Copper Contributor
Help with an excel formula
Hello,
I am writing a formula for table from column A to Column U. (In the dutch version so I translated the formula from dutch to english).
The Formula is located in A4 Column A is called "Status" and at certain points within the table when you enter data the status needs to change. I got six status effects.
- Not Assigned (when there is no date set in Column J)
- Assigned (when there is a date set in Column J)
- In Process (when the date is reach in Column J)
- Process Finished (When the checkbox in Column K is checked)
- Complete (When the Checkbox in Column Q is checked)
- Canceled (when the checkbox in column S is activated this must overrule everything)
Now in column K/Q/S I made checkboxes and in Column L/R/T I assigned the True and False statements so I could use the checkboxes in the Formula.
This is the formula I came up with but it ain't working
But it appears to not have been working, can somebody help me fixing the formula.
=IF(T4=TRUE,"canceled",IF(R4=TRUE,"complete",IF(L4=TRUE,"process finished",IF(AND(J4<>"",J4<=TODAY()),"in process",IF(AND(J4<>"",J4>TODAY()),"assigned",IF(J4="","not assigned",""))))))
You can try this formula which seems to work in my sheet if i correctly understand what you want to do.