I have a FMXGrid bound visually to a FDMemtable. I have 5 columns on the grid which I want to show a sum calculation however the fixed footer row shows the last record in the data set instead of the summary calculation. How do I overcome this ?
You cannot add a sum calculation while maintaining an active connection, you will need to set the property TMSFMXGrid1.SaveDataSetData to true and then disconnect the dataset. Afterwards, you can add a sum calculation.