hello, i'm having a problem where it says
"Incompatible Type. The 'Date' column in the data source you're updating expects a 'Text' type and you're using a 'Time' type
this is my function:
Collect(
Leak_Reporting2,
{
Date:
Value(date.Selected.Value) +
Time(
Value(HourValue1_1.Selected.Value),
Value(MinuteValue1_1.Selected.Value),
0
),
'WCAV Unit': wcavunit.Text,
'Reported By:': reportedby.Text,
'Type of Leak': typeofleak.Text,
'MRU': mru.Text,
'Complete Adress(provide house number if possible)': completeaddress.Text,
'Nearest Landmark/Meter Number': nearestlandmark.Text,
'Contact Number(if available)': contactnumber.Text,
'CAN(if available)': can.Text,
'Chlorine Test': chlorinetest.Text,
'Remarks': remarks.Text,
}
)
-
I hope you can help me with this.