Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
76 | |
76 | |
55 | |
35 | |
34 |
User | Count |
---|---|
99 | |
56 | |
53 | |
44 | |
40 |