Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi Everyone,
Here comes the issue. I have 2 tables, unrelated. One is a Fact table, the other is a new table created to determine a range for each value.
Range Table:
RowNumber | Task | Start Range | End Range |
1 | A | 1 | 9 |
10 | B | 10 | 19 |
20 | C | 20 | 29 |
30 | D | 30 | 39 |
Fact Table:
RowNumber | Task | New Column TBD |
1 | A | A |
2 | A.2 | A |
3 | A.3 | A |
10 | B | B |
11 | B.1 | B |
12 | B.2 | B |
20 | C | C |
21 | C.1 | C |
22 | C.2 | C |
30 | D | D |
31 | D.1 | D |
32 | D.2 | D |
The "New Column TBD" is the outcome Im looking for. It should be created by analysing the Fact Table row number into the range provided in the Range Table.
Thanks for the feedback,
Regards.
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new column.
New Column TBD =
SUMMARIZE (
FILTER (
Range,
'Fact'[RowNumber] >= Range[Start Range]
&& 'Fact'[RowNumber] <= Range[End Range]
),
Range[Task]
)
Hi,
Please check the below picture and the attached pbix file.
It is for creating a new column.
New Column TBD =
SUMMARIZE (
FILTER (
Range,
'Fact'[RowNumber] >= Range[Start Range]
&& 'Fact'[RowNumber] <= Range[End Range]
),
Range[Task]
)
Great! Ty!
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 |
---|---|
80 | |
76 | |
60 | |
36 | |
33 |
User | Count |
---|---|
91 | |
60 | |
59 | |
49 | |
45 |