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 All,
I am looking to reassign a value based on specific conditions, here is my table below...
Name | Amount | Delivery Day |
A | 1 | Blank |
A | 2 | Day 1 |
A | 1 | Day 1 |
A | 5 | Day 2 |
B | 4 | Day5 |
B | 5 | Blank |
B | 12 | Day2 |
C | 7 | Day 3 |
C | 8 | Day 1 |
C | 17 | Day5 |
for example I would like the Delivery Day to be reassigned to be the Delivery Date that is over 50% of the total amount (solution can't be max) and here is what I would therefore expect to see...
Name | Amount | Delivery Date |
A | 6 | Day 2 |
B | 15 | Day 2 |
C | 24 | Day 5 |
If this solution was a calculated column that would be great! 😊
Many Thanks in advance for your help!
Taylor
Solved! Go to Solution.
hi @Ttaylor9870
try to plot a table visual with Name column and two measures like:
AmountSum = SUM(TableName[Amount])
MaxDeliveryDate =
MINX(
FILTER(
TableName,
TableName[Amount]=MAX(TableName[Amount])
),
TableName[Delivery Day]
)
it worked like:
Hi @FreemanZ,
How would this then look if you were to change it to No of rows opposed to Amount?
Name | Amount | Delivery Day |
A | 1 | Blank |
A | 2 | Day 1 |
A | 1 | Day 1 |
A | 5 | Day 2 |
B | 4 | Day5 |
B | 5 | Blank |
B | 8 | Day 2 |
B | 12 | Day2 |
C | 7 | Day 3 |
C | 8 | Day 1 |
C | 17 | Day5 |
C | 1 | Day 1 |
Company | Amount | Delivery Day |
A | 9 | Day 1 |
B | 29 | Day 2 |
C | 33 | Day 1 |
Hi @FreemanZ ,
There was no calculated columns or measures to create the columns that's they way they naturally sit.
I'd like the amounts added up and then whatever Delivery day had more than 50% of the total then assign delivery date to that.
Apologies! My bad I've edited the post and forgot to edit my expected table here is it fixed...
My Table...
Name | Amount | Delivery Day |
A | 1 | Blank |
A | 2 | Day 1 |
A | 1 | Day 1 |
A | 5 | Day 2 |
B | 4 | Day5 |
B | 5 | Blank |
B | 12 | Day2 |
C | 7 | Day 3 |
C | 8 | Day 1 |
C | 17 | Day5 |
Expected result...
Name | Amount | Delivery Date |
A | 9 | Day 2 |
B | 21 | Day 2 |
C | 32 | Day 5 |
hi @Ttaylor9870
try to plot a table visual with Name column and two measures like:
AmountSum = SUM(TableName[Amount])
MaxDeliveryDate =
MINX(
FILTER(
TableName,
TableName[Amount]=MAX(TableName[Amount])
),
TableName[Delivery Day]
)
it worked like:
Hi @FreemanZ,
How would this then look if you were to change it to No of rows opposed to Amount?
Name | Amount | Delivery Day |
A | 1 | Blank |
A | 2 | Day 1 |
A | 1 | Day 1 |
A | 5 | Day 2 |
B | 4 | Day5 |
B | 5 | Blank |
B | 8 | Day 2 |
B | 12 | Day2 |
C | 7 | Day 3 |
C | 8 | Day 1 |
C | 17 | Day5 |
C | 1 | Day 1 |
Company | Amount | Delivery Day |
A | 9 | Day 1 |
B | 29 | Day 2 |
C | 33 | Day 1 |
Hi @FreemanZ ,
No of Delivery Day rows, for example in the table above Compnay A had 2 Delivery Day 1 so make a new column that then assigns Company A to Delivery day 1.
Many Thanks for your help! 😊
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 |
---|---|
10 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
14 | |
12 | |
11 | |
10 | |
8 |