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 everyone,
I have a situation like the following:
I want to create another column only with Electricity coefficient. Final table must be like the following:
I don't want create Electricity Coeff. writing 0.0036 inside the formula because that value change when app is refreshed.
Any solution?
Solved! Go to Solution.
Hi, @Anonymous
You can try the following methods. Find the minimum value of each ID.
Column:
Electricity Coeff. =
CALCULATE (
MIN ( 'Table'[Coeff.] ),
FILTER ( 'Table', [ID] = EARLIER ( 'Table'[ID] ) )
)
Does this match the output you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
You can try the following methods. Find the minimum value of each ID.
Column:
Electricity Coeff. =
CALCULATE (
MIN ( 'Table'[Coeff.] ),
FILTER ( 'Table', [ID] = EARLIER ( 'Table'[ID] ) )
)
Does this match the output you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |