Hey guys, I'm trying to sum up the minimums I got from this formula: min(balanced order qty, physically available).
I tried sumx(table, min(balanced order qty, physically available)) but didn't work. Highlight above is what I expect to get.
Thank you so much!!!
Hi,
Please try to write a measure something like below.
Expected measure: =
SUMX (
'Table',
MIN (
CALCULATE ( SUM ( 'Table'[Balanced Order qty] ) ),
CALCULATE ( SUM ( 'Table'[Physically available] ) )
)
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
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!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
96 | |
79 | |
43 | |
32 | |
29 |
User | Count |
---|---|
133 | |
94 | |
88 | |
46 | |
42 |