Question

Lets say 30 Columns and i need a calculated Column that says IF any of the 30 columns equals yes then it equals needs help, if no do do nothing. Is there anyway to do this. Or a workflow that does the following if any column contains yes the email creator the title of the line item.

Was it helpful?

Solution

Add a new list workflow using SharePoint Designer and then use If conditional check

Create a new variable and set value = 0

If currentitem:column1 equal  "Yes" 
    Set variable value = 1
If currentitem:column2 equals "Yes"
    Set variable value = 1

After completing this for all 30 columns. You can check

If variable equals 1
      Sent Email

This workflow should start automatically on ItemUpdate

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top