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, @Gab_BI
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, @Gab_BI
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.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
103 | |
58 | |
44 | |
29 | |
24 |
User | Count |
---|---|
133 | |
94 | |
74 | |
43 | |
41 |