Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello BI Community,
I have two table.
1. Scheme Table
2. Master of DIstributor
Party name is name of Distributor who is eligibe for Scheme. and Distributor contains all name of Distributor in Gujrat State.
relationship : State to State
I want one column whe Party name is Equal to DIstributor then 1 otherwise 0
State | Party name | Distributor |
Gujarat | xyz | abc |
Gujarat | xyz | dfe |
Gujarat | xyz | xyz |
Gujarat | xyz | rtg |
as a measure:
IF(
MAX('Table'[Party Name]) = MAX('Table2[Distributor]) ,
1 ,
0
)
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
29 | |
18 | |
15 | |
7 | |
6 |