SUM of Total sales per day
Good day Community,
I have an Info table that stores the sales of fruit a day. See (MyTable.png)
<MyTable>
I want to add the number of fruits I sold each day then reorganize my table to that the day that has the highest sales can appear at the top of my list, and the day I on which I had the least sales should appear at the bottom of the info table. See the image below:

I've written up a piece of code, however I have hit a wall because the sum of the sales per day is not correct. How can I fix this:
let Total_Sales_Per_Day = 0;
for(let c=0; c<Fruit_Names.length; c++){//the column names from the input
Fruit_Input = Fruit_Names[c].Fruit_Names;
Value = MyTable[Fruit_Input];
Value = parseFloat(Value);
let Total_Sales_Per_Day = Total_Sales_Per_Day + Value;
}
let result = Total_Sales_Per_Day
Regards,


