Calculated column If Data is Blank (lists)

Copper Contributor

 Guys, I need to create a calculated column to check if the information in another column is empty, if it is empty "empty" if not "project talks", how can i do its?

1 Reply

@Juniohg Try formula like: 

 

=IF(ISBLANK([Column Name]),"Empty","Project Talks")

 

Note:

  1. Sometimes comma( , ) does not work in formula (it is based on language or regional settings on your site). So in that case use semicolon( ; ) instead of comma( , )
  2. Use correct display name of your SharePoint columns in above formula
  3. Wrap column names inside [] if your column name has space in it. For example: [My Column Name]

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.