Jun 22 2021 05:32 AM
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 "Resolved", a value from the "Resolution Type" will need to be selected before the form can be saved.
Any help, would be appreciated.
Thanks 🙂
Jun 22 2021 11:14 AM
@Chris Cundy Add list validation formula from List settings --> Validation settings. Set formula something like:
=IF([Status] = "Resolved", IF(ISBLANK([Resolution Type]), false, true), true)
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
Mar 09 2022 10:35 PM
@ganeshsanap Thanks for your update. my case is a bid different. for instance you have used Resolved in ur example, but my case is Resolved and In Progress. If the users select either Resolved or In Progress the other column should become require field. Can you please help with this one. I have used && or AND, none of them works.
Mar 10 2022 11:13 AM
@Harris0261 Use formula like below:
=IF(OR([Status] = "In Progress", [Status] = "Resolved"), IF(ISBLANK([Resolution Type]), false, true), true)
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.
Apr 04 2022 05:17 PM
@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.
Apr 04 2022 05:51 PM
Aug 22 2023 01:05 PM
Thanks for your answer.
I have a column called 'Status' with two values - Completed and Not Completed.
Depending on 'Status' column value if it is "Completed", I need to auto populate another column which is a date column called " Completed Date" How can I populate today's date ?
Aug 22 2023 10:18 PM
@kott2005 If you want to store the date on which day the status is changed to "Completed", you can do it using:
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.