Forum Discussion
massotebernoull
Helper I
4 years agoCreating a column with two tables (one with repeated values)
Hello guys, I Have two tables, Table 1 with main data (dimension table), and Table 2 with repeated values (fact): Table 1 ITEM OTHER data... A B C D E F ...
- 4 years ago
Hi,
This calculated column formula works
=if(CALCULATE(COUNTROWS(Table2),FILTER(Table2,Table2[ITEM]=EARLIER(Table1[ITEM])))>=1,"Already made contact","No contact")Hope this helps.
Ashish_Mathur
Super User
4 years agoHi,
This calculated column formula works
=if(CALCULATE(COUNTROWS(Table2),FILTER(Table2,Table2[ITEM]=EARLIER(Table1[ITEM])))>=1,"Already made contact","No contact")
Hope this helps.