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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have two tables. Table A contains the rent of houses. Table 2 shows the limit values for the rental classes.
Now I want to add the rental classes to table 1.
So in my example, house 1 falls in Group 4 and house 2 falls in Group2
In Excel this is easily done with the match-function.
How can I do this in Power BI?
| A | House | Rent |
| 1 | 602 | |
| 2 | 500 | |
| 3 | 975 | |
| 4 | 650 | |
| 5 | 524 |
| B | Group | RentMax |
| Group1 | 400 | |
| Group2 | 500 | |
| Group3 | 600 | |
| Group4 | 700 |
Hope you can help me on this!
Solved! Go to Solution.
Thanks Greg!
With one little adjudgment it works perfectly:
Rent Group = VAR MaxRent = MINX(FILTER(RentGroups,RentGroups[RentMax]>=(Houses[Rent])),RentGroups[RentMax]) RETURN LOOKUPVALUE(RentGroups[Group],RentGroups[RentMax],MaxRent)
Rent Group = VAR MaxRent = MINX(FILTER(RentGroups,RentGroups[RentMax]>=MAX(Houses[Rent])),RentGroups[RentMax]) RETURN LOOKUPVALUE(RentGroups[Group],RentGroups[RentMax],MaxRent)
Nice job with posting the data and what you expect as a result.
Thanks Greg!
With one little adjudgment it works perfectly:
Rent Group = VAR MaxRent = MINX(FILTER(RentGroups,RentGroups[RentMax]>=(Houses[Rent])),RentGroups[RentMax]) RETURN LOOKUPVALUE(RentGroups[Group],RentGroups[RentMax],MaxRent)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 30 | |
| 28 |
| User | Count |
|---|---|
| 128 | |
| 88 | |
| 79 | |
| 67 | |
| 62 |