Mar 30 2023 06:17 AM
Good Afternoon all,
I need some help calculating a coulmn on sharepoint and was hoping some super users could help.
What I would like to do is a calculated column, im using 4 columns to calculate this.
Column 1 is "Finding type" which is a choice column
Column 2 is "Internal External" which is a choice column
Column 3 is "Containment" which is a text column
Column 4 is "Created" which is the default date column in sharepoint
The formula i would like is if the Finding type is "Minor" and Internal external is Internal and the Containment is blank and the created date greater than 5 days, the calculated column must show overdue.
My next parameters is if the Finding type is "Major" and Internal external is Internal and the Containment is blank and the created date greater than 1 days, the calculated column must show overdue.
Im not sure how to write the expression on sharepoint, please help.
Mar 30 2023 07:29 AM
Solution@Keegan960 Try something like this for your calculated column formula:
=IF(OR(AND([Finding type]="Minor",[Internal External]="Internal",ISBLANK([Containment]),(TODAY()-[Created])>5),AND([Finding type]="Major",[Internal External]="Internal",ISBLANK([Containment]),(TODAY()-[Created])>1)),"Overdue","")
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.
For SharePoint/Power Platform blogs, visit: Ganesh Sanap Blogs
Mar 30 2023 08:05 AM
Mar 30 2023 08:18 AM
Mar 30 2023 07:29 AM
Solution@Keegan960 Try something like this for your calculated column formula:
=IF(OR(AND([Finding type]="Minor",[Internal External]="Internal",ISBLANK([Containment]),(TODAY()-[Created])>5),AND([Finding type]="Major",[Internal External]="Internal",ISBLANK([Containment]),(TODAY()-[Created])>1)),"Overdue","")
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.
For SharePoint/Power Platform blogs, visit: Ganesh Sanap Blogs