Datatable to xls

I am wondering if it is possible to create a data table in ue4 which automatically gets and keeps updated the features of some of my meshes (for example square meters of a certain floor, or the material applied to a wall) and export these datas outside as excel (or similar)

thanks!

You would need to put your meshes into a BP that updates the values in a datatable asset.
Datatable assets can be exported via the context menu (rightclick)

Another way would be to have all your mesh BPs print their values to the log on begin oplay or on an keypress,
then copy&paste that into excel and process text to columns…

thanks i’ll try with this !