Forum Discussion
TechR21
3 years agoHelper V
Using 3 arguments with "AND" function
Is it possible to have more than 2 arguments when using "AND" function in powerbi? "NEwcolumn", IF ( AND( CALCULATE ( first argument ), CALCULATE ( 2nd argument ), CALCU...
- 3 years ago
Hi TechR21,
You could use && instead of AND():
IF ( <condition 1> && <condition 2> && <condition 3>, 1, 0 )Best Regards,
Alexander
mlsx4
3 years agoMemorable Member
Hi!
You can use the operator &&