Forum Discussion
Sharepoint List - Single line of text starts with +49
- Oct 13, 2023
Its working now, I inserted the formula into the web page UI of the list and selected the column, as shown in the screenshot
=WENN(LINKS(Rufnummer;3)="+49";WAHR;FALSCH)
Formula is working correctly:
MichaelW Use column validation formula like this:
=IF(LEFT([Rufnummer],3)="+49",TRUE,FALSE)
As you are using German language, you will need to use semicolons instead of commas like:
=IF(LEFT([Rufnummer];3)="+49";TRUE;FALSE)
Output:
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.
- MichaelWOct 12, 2023Brass Contributor
- ganeshsanapOct 12, 2023MVP
MichaelW It is working fine for me with English language SharePoint site.
Can you try using this once:
=WENN(LINKS([Rufnummer];3)="+49";TRUE;FALSE)
Make sure you are using correct name of your column in place of Rufnummer in above formula.
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.
- MichaelWOct 12, 2023Brass Contributor