Forum Discussion
Automatically fill a Sharepoint list field
Hi
We have a field in a Sharepoint list that has Yes / No answers
We want another field to automatically be completed if the answer to the Yes/No field is set to No
Anyone know if thsi can be done?
5 Replies
- Pn1995Brass Contributor
Thanks
I added the below: (Harm Yes or No is my other column)
=IF([Harm Yes or No],"No","Very Low")
However I get this error:
I'm I missing a step?Thanks
Pn1995 You need to create a "Calculated column" instead of "Single line of text" column.
Also, what is the data type of "Harm Yes or No" column?
If data type of "Harm Yes or No" is "Choice" or "Single line of text" use this formula:=IF([Harm Yes or No] = "No", "No", "Very Low")If data type of "Harm Yes or No" is "Yes/No" use this formula:
=IF([Harm Yes or No], "Very Low", "No")First value in above IF function is for Yes/true value.
Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.