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,
I have 2 table.
First Table
| Batch | Start Value Batch (Decimal Number) | End Value Batch (Decimal Number) |
Second Table
| Start Value Reason (Decimal Number) |
My Goal is to add the Batch Value From the first Table to the second table.
The batch Value to retrieve is the one where the Start Value Reason is between Start Value Batch and End Value Batch.
multiple rows of the Second Table will Get the same Batch Value of the First Batch.
Thank you all for your help !
Solved! Go to Solution.
@sdlx , Try a column like
maxx(filter(table1, Table2[Start Value Reason] >= Table1[Start Value Batch] && Table2[Start Value Reason] <= Table1[End Value Batch] ), Tabl1[Batch])
@sdlx , Try a column like
maxx(filter(table1, Table2[Start Value Reason] >= Table1[Start Value Batch] && Table2[Start Value Reason] <= Table1[End Value Batch] ), Tabl1[Batch])
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 193 | |
| 123 | |
| 99 | |
| 67 | |
| 49 |