Hello everyone! This time I need you.
I need to calculate the minimum value among the absolute values of a column grouped by key, in order to put in that line the sum of the same column.
I try to explain, the data:
CHIAVE | DELTA_ADJ |
AAA | -444,471873 |
AAA | 380,175 |
BBB | -28323017,83 |
BBB | -80752,60925 |
I need to compute the sum of the column DELTA_ADJ grouped by CHIAVE, so:
-64,296873 |
-28403770,44 |
and put it in correspondence with the minimum value of the absolute value of each key, in this way:
|
EVERYTHING MUST BE DONE BY MEASURE, WITHOUT CALCULATED COLUMNS
THX,
BF
Solved! Go to Solution.
Hi @BeaBF
You can try https://we.tl/t-rWuYaQz0GU
MIN VALUE =
VAR AbsCurrentValue = ABS ( MAX ( Data[DELTA_ADJ] ) )
VAR ChiaveTable = CALCULATETABLE ( Data, ALLEXCEPT ( Data, Data[CHIAVE] ) )
VAR GroupedBySum = SUMX ( ChiaveTable, Data[DELTA_ADJ] )
VAR AbsMinValue = MINX ( ChiaveTable, ABS ( Data[DELTA_ADJ] ) )
VAR Result = IF ( AbsCurrentValue = AbsMinValue, GroupedBySum, 0 )
RETURN
Result
Hi @BeaBF
You can try https://we.tl/t-rWuYaQz0GU
MIN VALUE =
VAR AbsCurrentValue = ABS ( MAX ( Data[DELTA_ADJ] ) )
VAR ChiaveTable = CALCULATETABLE ( Data, ALLEXCEPT ( Data, Data[CHIAVE] ) )
VAR GroupedBySum = SUMX ( ChiaveTable, Data[DELTA_ADJ] )
VAR AbsMinValue = MINX ( ChiaveTable, ABS ( Data[DELTA_ADJ] ) )
VAR Result = IF ( AbsCurrentValue = AbsMinValue, GroupedBySum, 0 )
RETURN
Result
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
103 | |
34 | |
31 | |
28 | |
21 |
User | Count |
---|---|
125 | |
49 | |
40 | |
32 | |
24 |