Re: Trying to get the max and min values in a simple table and sum the result
Hi @bobgodin ,
The formula you described is below, but the total of all maximum and minimum values is 552.68
Sum(
AddColumns(
GroupBy(
SPListName,
"meterref",
"Data"
),
"MaxVal",
Max(
Data,
reading
),
"MinVal",
Min(
Data,
reading
)
),
MaxVal + MinVal
)
if you meant Average, this is 138.17
Average(
AddColumns(
GroupBy(
SPListName,
"meterref",
"Data"
),
"MaxVal",
Max(
Data,
reading
),
"MinVal",
Min(
Data,
reading
)
),
MaxVal + MinVal
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps