Reveal after selections from two columns

Lorne Andersen 61 Reputation points
2022-10-15T10:53:03.2+00:00

The column Fault Description appears when the "Machine Down" is selected under the Maintenance Type column (Pic1).

If the user instead chose either "Break and Fix" or "Preventative" and any selection under the column Estimated Time Duration (Pic2), then the Fault Description column must appear.

I have used this formula unsuccessfully: =if([$Estimated_x0020_Time_x0020_Durat]==''&&[$Maintenance_x0020_Type]=='Machine Down'||[$Maintenance_x0020_Type]=='Break and Fix'||[$Maintenance_x0020_Type]=='Preventative', true, false)250689-pic1.png250773-pic2.png

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
11,096 questions
{count} votes

Accepted answer
  1. Xyza Xue_MSFT 27,501 Reputation points Microsoft Vendor
    2022-10-19T02:48:05.19+00:00

    Hi @Lorne Andersen
    Thanks for your detailed description, I finally achieved what you wanted.
    The effect achieved is as follows:
    251786-image.png
    251805-image.png
    251821-image.png
    251738-image.png
    I have used this formula successfully:

    =(if([$MaintenanceType]=='Break and Fix'||[$MaintenanceType]=='Preventative',true,false))&&if([$FaultDescription]=='',false,true)  
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.