Hello im using an excel file stored on one drive,
So im calculating in my app the duration of some activities where i can put the initial date and the end date of the activity, and im using Date diff to calculate the duration of the activity,
So for example the initial date was 00:00:00 and the final date was 00:10:00 so the duration will be 10 minutes or 0,167 hours (ill leave a pic of the problem down there), so far so good the app shows me the 0,167 value as a duration, but when i save that and check the excel file on one drive, the duration appears like 167, which clearly is the incorrect value, it is like the app or something is multiplying by 1000 at some point .
im using a datacard whit the function: Value(Round((DateDiff(TimeValue(HoraInicio.Text);TimeValue(HoraFin.Text);Minutes)/60);3);"es-ES"))
where:
Hora inicio is the initial date in hours,
Hora Fin is the final date in hours,


Ill appreciate some help,
Stay safe out there.