Hi @Xuyan Ding - MSFT - the complexity that I am looking for with this formula has greatly increased, so I have a follow up question.
Here is what I am trying to accomplish:
- Within a SPO list form, there is an "issue type" choice column with multiple selections.
- Depending on which issue type is selected, a variety of other columns should be required.
- For example, IF issue type = Product Packaging Issue, then Image of Item, Lot Code, and Expiration Date would be required. BUT if issue type = Out-of-Stock Inquiry, then Brand and UPC would be required.
- There are more variations than that, but here is the formula I attempted, but am getting a syntax error:
=IF(OR(OR([Issue Type: Grocery]=”Out-of-Stock Inquiry”,[Issue Type: Whole Body]=”Out-of-Stock Inquiry”),IF(AND([Brand]<>””,[UPCs or PLUs]<>””),TRUE,FALSE),TRUE),IF(OR([Issue Type: Grocery]=”Packaging & Supply Order Issues”,[Issue Type: Grocery]=”Product Packaging Issues”,[Issue Type: Whole Body]=”Packaging & Supply Order Issues”,[Issue Type: Whole Body]=”Product Packaging Issues”),IF(AND([Image of Item]<>””,[Lot Code]<>””,[Expiration Date]<>””),TRUE,FALSE),TRUE))