Finding Average Values of an Attribute in Mendix

1
Hi, I have a Entity with the name “Weekly”. I have one Attribute of the name “Values” in it. I Need to find the Average Value of the Attribute “Values”. I don’t see any Statistical Function for Average in Mendix. Can someone help??      
asked
2 answers
2

Hi Udhan,

If you retrieve the list in a microflow, you can add another activity of type aggregate list, here you have the option to get the average.

Hope this helps!

answered
2

The “Aggregate List” function is a standard microflow action. You can select the List you want to input – Weekly, in this case – the function, Average, and the attribute you want to Average. That should do the trick :)

answered