Forum Discussion
Shanvitha_V
4 years agoFrequent Visitor
IF condition two table column comparison
Hi Export, Good day, I have two column with two different table how compare in IF condition. Condition=IF(TableA(Name)=TableB(Name) && age>18,1,0) TableA(name)=tableB(name) not compare thr...
- 4 years ago
Hi Shanvitha_V
please try
= IF ( TableB[admitteddate] = TableB[Dischargedate] && TableB[age] > 18 && TableA[name] IN VALUES ( TableB[name] ), 1, 0 )
tamerj1
4 years agoCommunity Champion
Hi Shanvitha_V
please try
=
IF (
TableB[admitteddate] = TableB[Dischargedate]
&& TableB[age] > 18
&& TableA[name] IN VALUES ( TableB[name] ),
1,
0
)