Hello! I'm trying to write a column formula that will return project task Status "Study review Complete" if the particular task is complete else should return "Study review incomplete" otherwise.
My formula needs to read across 2 columns, and one column is a dropdown list and other is a checkbox.
-- I want to show status -- "Study A review Complete "(If the conditions are met ) and "Study A review inComplete "(If the conditions are not met)
-- I want to show status -- "Study B review Complete "(If the conditions are met ) and "Study B review inComplete "(If the conditions are not met)
-- I want to show status -- "Study H review Complete "(If the conditions are met ) and "Study H review inComplete "(If the conditions are not met)
So with the above scenario in mind, I wrote a nested IF(AND(OR) formula with which i was able to set the status for "study H"(both true or false status) and "study B"(both true or false status) but can't figure out how to get the status for "study A" when the conditions are not met.
=IF(AND(columnTask@row = "Study A ", columnCheck@row = 1), "Study A review Completed " ,IF(AND(columnTask@row = "Study B", columnCheck@row = 1), "Study B Complete ", IF(OR(columnTask@row = "ABC", columnTask@row = "IEF", columnTask@row = "MD"), IF(columnCheck@row = 1, "Study H Complete", "Study H In Progress"),"Study B in Progress")))))
**** I need to include false statement status for "Study A" in the above formula if that helps ****
I've been staring at smartsheet and notepad for far too long trying to solve this, but no luck yet on that!
Any recommendations are greatly appreciated.