Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I want to create a dax column with something like that :
If Table1[ColumnA] = "Something",
Then Table2[ColumnB],
Else Table1[ColumnA]
Table1 and 2 aren't related and can't be related. There are also 2 table between these.
There are in a schema like this :
Because my tables aren't related, I can't use a simple related fonction.
Someone have an idea how to solve it ?
Thanks !
Solved! Go to Solution.
@Anonymous , You need to bring in the columnB in Table1 or columnA in Table2
In the New column in Table1
MAxx(filter(Table2, Table1[Key] = table2[Key]) , Table2[ColumnB])
@Anonymous , You need to bring in the columnB in Table1 or columnA in Table2
In the New column in Table1
MAxx(filter(Table2, Table1[Key] = table2[Key]) , Table2[ColumnB])
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 17 | |
| 10 | |
| 7 | |
| 6 |