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
Hello Experts
I have this data table1:
I want to result from this table2:
This will be a my final result:
How i take a range for give data in power bi dax?
Thank you.
Solved! Go to Solution.
@MHTANK Try:
Range Column in Table1 =
VAR __Points = 'Table1'[Points]
VAR __From = MAXX(FILTER('Table2', 'Table2'[From] <= __Points),[From])
VAR __Result = MAXX(FILTER('Table2', 'Table2'[From] = __From),[Range])
RETURN
__Result
@MHTANK Try:
Range Column in Table1 =
VAR __Points = 'Table1'[Points]
VAR __From = MAXX(FILTER('Table2', 'Table2'[From] <= __Points),[From])
VAR __Result = MAXX(FILTER('Table2', 'Table2'[From] = __From),[Range])
RETURN
__Result
Yes, it's work. Thank you
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 37 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 90 | |
| 78 | |
| 66 | |
| 65 |