Conditional Formula not working

Gonzalez, Susana 20 Reputation points
2024-12-19T15:09:44.42+00:00

Hello I am building a list and I am trying to show a field based on the response but it is not working. I want the field "wiki page' to show if the 'Is wiki page ready?' is yes. I currently have this field as a choice field with the following formula:

=if([$iswikipageready]=='Yes', 'true', 'false')

Wiki Page field is just a single line text field, it seems to be working because it was grayed out when I save the change, however when you select yes it does not show the field. Are there any suggestions?

SharePoint Development
SharePoint Development
SharePoint: A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.Development: The process of researching, productizing, and refining new or existing technologies.
3,154 questions
0 comments No comments
{count} votes

Accepted answer
  1. Emily Du-MSFT 48,646 Reputation points Microsoft Vendor
    2024-12-20T02:49:12.78+00:00

    1.Go to the List settings -> Columns -> Click "Is wiki page ready?" column -> Find the column internal name.

    User's image

    3

    2.Click Add new item -> Edit column -> wiki page -> Edit conditional formula -> Enter following formula -> Save the setting.

    Note: You need replace the column internal name with yours.

    =if([$Iswikipageready_x003f_] == 'Yes', 'true', 'false')
    

    enter image description here

    enter image description here


    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.

    1 person found this answer helpful.

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.