I'm trying to develop a timesheet app for our staff, linking to an excel sheet in Onedrive.
My table structure has one row per working day of the year and a range of contracts (x4) against which time can be logged.
Contracts are selected using a dropdown list from a second table.
On DetailScreen1 I have a field Total_Hours which links back to my primary table. In here I have inserted the following formula to sum the hours inserted against the 4 selected contracts:
Text(Value(Hours_1_Value.Text)+Value(Hours_2_value.Text)+Value(Hours_3_value.Text)+Value(Hours_4_value.Text))
This sums inside the app and displays the answer, but it does not write the value back to the excel sheet. Can anybody help me work out where I have gone wrong?
Many thanks
