@Muhammad Asif Suppose we have a table named Data, to find required result with logical operators II and OR. Result = IF(Data[City] = "Lahore" || Data[Salary] > 50000 || Data[Age] < 50, "Ok", "Not Ok" The result will be in form of Ok if all criteria matches otherwise will return Not ok. Also we can use OR operator to find required result with syntax: Result = IF( OR( OR( Data [City] = "Lahore", Data [Salary] > 50000 ), Data[Age] < 50 ), "Ok", "Not Ok" I was unable to use IN to find the result. so how to use IN here, kindly elaborate it.