Forum Discussion
Chris Cundy
Jun 22, 2021Brass Contributor
Conditionally require column based on value of another
Hello, I have a status column in SharePoint Online and another column named "Resolution Type". Both columns are of type "Choice". What I want to do is that when Status is changed to "Reso...
CSimms81
Apr 04, 2022Copper Contributor
ganeshsanap how can I write the code if I have multiple status drop downs that need to have different columns. For instance:
Status "Under Review" needs to display the field "Request Initiated Close Date" and if
status "Case Opened" need to display the field "Under Review Close Date" and if
status "Resolution in Progress" need to display the field "Case Opened Close Date"
I've been trying for hours to get this to work. Any help would be greatly appreciated.
CSimms81
Apr 04, 2022Copper Contributor
I currently have:
=IF(OR([Status] = "Under Review", [Status] = "Waiting for Customer"), IF(ISBLANK([Request Initiated Close Date])OR([Status] = "Case Opened", IF(ISBLANK([Under Review Close Date])OR([Status] = "Resolution in Progress", IF(ISBLANK([Case Opened Close Date]) false, true), true)
=IF(OR([Status] = "Under Review", [Status] = "Waiting for Customer"), IF(ISBLANK([Request Initiated Close Date])OR([Status] = "Case Opened", IF(ISBLANK([Under Review Close Date])OR([Status] = "Resolution in Progress", IF(ISBLANK([Case Opened Close Date]) false, true), true)