SharePoint Formula
3 TopicsSharePoint list validation formula error
Hello. I am trying to use the list validation setting in SharePoint online to validate conditions on a list item before letting a person save changes to it. I keep getting errors. The first part of the formula checks to require responses if the user selects a specific dropdown from the choice column "Confirm". The second part of the formula should check a single line text column called "Location" for a value, and confirm that value doesn't exist in the string of another dropdown column called "Choices". What am I doing wrong? Is what I'm trying to do not possible with a list validation setting? =AND(IF([Confirm]="I request a different location",IF(OR([Choices]="",[ Rationale]=""),FALSE,TRUE),TRUE),IF(OR([Location]="A",[Location]="B",[Location]="C"), FIND ([Location],[Choices],1)=0, [Choices] <>[Location])) Thanks in advance for the insight.2.8KViews0likes2CommentsNeed help in formula in calculated column with multiple IF statement
Hi! Please can anyone help me with this! 😞 I am trying to created a calculated column 2 that based on another calculated column 1 . I have calculated column 1 as 7, 25, 1, 5, 6, 3, 10, 5. So I wanted to create a calculated column 2 with the following conditions: IF[calculated column 1]>=7, returned as "Low", IF(AND([calculated column 1]<=5,[calculated column 1]>=3, returned as "Medium", IF[calculated column 1]<=2, returned as "Urgent". FYI, If the calculated column 1 has number greater or equal to 7, returned as "Low" in calculated column 2. If the calculated column 1 has number less than or equal to 5 and greater or equal to 3, returned as "Medium" in calculated column 2. If the calculated column 1 has number less than or equal to 2, returned as "Urgent" in calculated column 2. I have tested the calculated column with my formula (below), it does not work and show as syntax error. =IF(IF[Priority1]>=7,"Low",IF(AND([Priority1]<=5,[Priority1]>=3,"Medium")),IF[Priority1]<=2,"Urgent") Please can anyone fix this for me? Many Thanks!! ** Sorry if its too long to read, i just need to make sure it is clear** Thank you!!!Solved18KViews0likes2CommentsColumn Default Value Based on Root URL
I have a tab in an MS Teams team where users can view our upcoming corporate training sessions (i.e. Events). In each event description, I am putting a link to a sign up form. The sign up form is a list in MS SharePoint Online. In this list, there is a column to specify the event to which the user wants to sign up. I want this column to be automatically filled using the column default value function in SharePoint. The default value would be based on the root URL that led the user to the sign up form. For example, if the user was viewing training session X in Teams, it means the root URL is the event X URL. So, the formula would be: IF [Root URL] = (URL of event X) then "X", ELSEIF [Root URL] = (URL of event Y) then "Y"... and so on. Does this hypothetical [Root URL] function even exist? If not do you have any suggestion for how I can tell which event the user is coming from such that I can fill the column automatically? Thanks.2.4KViews0likes4Comments