Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have a table with percentages, and I want to add another table with only five values:
>5%
2<x<5 %
(-2)<x< 2 %
(-5)<x<(-2) %
<(-5)%
How can I do this in Power BI Desktop?
(One of the columns the percentages are based on is from another table.
I tried something like this:
Thanks,
Sigrid
Solved! Go to Solution.
Hi,
I am not sure if I understood your question correctly, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
I hope the below can provide some ideas on how to create a solution for your datamodel.
It is for creating a new column.
Category CC =
SUMMARIZE (
FILTER (
Category,
Category[Min] < Data[Vektdiff]
&& Category[Max] >= Data[Vektdiff]
),
Category[Category]
)
Hi,
I am not sure if I understood your question correctly, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
I hope the below can provide some ideas on how to create a solution for your datamodel.
It is for creating a new column.
Category CC =
SUMMARIZE (
FILTER (
Category,
Category[Min] < Data[Vektdiff]
&& Category[Max] >= Data[Vektdiff]
),
Category[Category]
)
Wow, that was perfect!! Thank you so much! You totally made my morning! =D
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |