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.
Hello,
Let's say there are two columns out of 20.
What's the correct measure syntax to sum up the Bid Value for each distinct Bid Number so that the sum would equal 50?
Thanks!
Solved! Go to Solution.
Hi @Rsanjuan,
In your scenario, you can create a calculate column first:
Column 1 = IF ( CALCULATE ( COUNTAX ( Master, Master[Bid Number] ) ) = 1, Master[Bit Value], Master[Bit Value] / ( CALCULATE ( COUNTAX ( Master, Master[Bid Number] ) ) ) )
Then, based on this calculated column, sum its total via measure:
Measure1 = SUM(Master[Column 1])
Best regards,
Yuliana Gu
Hi Try with this:
BidValue per BidNumber = SUMX(
VALUES('Bids'[BidNumber]);
CALCULATE(AVERAGE('Bids'[BidValue]))
)
I'm not sure if it's correct, it actually created an overall sum that is more. Here's the actual expression I used:
TotalBidValue = SumX(Values(Master[Bid_Number__c]),CALCULATE(Average(Master[Bid Value])))
If I were to sum up the numbers in the chart above, the total would be 70 if we are not taking into account the duplicate bid numbers, but since we're adding up only the bid value when the bid numbers are distinct, it should be 50.
Did I do something wrong?
Hi @Rsanjuan,
In your scenario, you can create a calculate column first:
Column 1 = IF ( CALCULATE ( COUNTAX ( Master, Master[Bid Number] ) ) = 1, Master[Bit Value], Master[Bit Value] / ( CALCULATE ( COUNTAX ( Master, Master[Bid Number] ) ) ) )
Then, based on this calculated column, sum its total via measure:
Measure1 = SUM(Master[Column 1])
Best regards,
Yuliana Gu
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 |
---|---|
58 | |
56 | |
56 | |
38 | |
29 |
User | Count |
---|---|
75 | |
62 | |
45 | |
40 | |
39 |