Hi Kundan, The following expression should do it: IF(ISBLANK(SV1),"Missing Values",IF(SV1<=15,"Type A",IF(SV1>15,"Type B"))) Couple of pointers to help you along : The 'IF(ISBLANK(Field),True,False' expressionis best when you want to output something when there is no value. Your current expression i...