Forum Discussion
Digger
Post Patron
4 years agoMultiple boolean checks
How in calculated columns check 3 or mor colums for equals CheckIfEquals = [col1]=[col2]=[col3] I got error boolean cant match with integer
- 4 years ago
Digger , Try like
[col1] = [Col2] && [Col2] =[Col3] &&[Col1] =[Col3]
amitchandak
Super User
4 years agoDigger , Not clear
if([col1] = [Col2] && [Col2] =[Col3], true(), false() )
or
[col1] = [Col2] && [Col2] =[Col3]
- Digger4 years ago
Post Patron
amitchandak but it is wrong as [col1] never will matching with [col3]
- amitchandak4 years ago
Super User
Digger , Try like
[col1] = [Col2] && [Col2] =[Col3] &&[Col1] =[Col3]