expression - SharePoint MOSS 2007 - Calculated field - IsBlank function -
i'm sure simple question using sharepoint 2007 , trying create calculated column check if weather or not field empty. trying accomplish formula check if column empty , if return "this empty" or else return "this not empty".
so far got formula below dont understand how else statement in here. not having luck finding info on microsoft's site.
=if(isblank([column1]),"this empty")
any appreciated.
see documentation if function
if takes 2 parameters , using first, second parameter else...
if( isblank([column1]) , "this empty" , "this not empty" )
in other words.. rtfm
https://msdn.microsoft.com/en-us/library/office/bb862071%28v=office.14%29.aspx
Comments
Post a Comment