Hello to all
I have done a good amount of searching, but no luck.
The below works.
Patch(
BSInspections,
Defaults(BSInspections),
{
StationNum: {
Id: NumT.ID,
Value: NumT.StationNumber
},
BaitLeft: BLeft,
BaitAdded: BAdded,
Faeces: FaecesYN,
InspectionDate: Today()
}
)
But this next code does not patch the three yes no columns.
ForAll(
ColStation,Patch(BSInspections,
{StationNum:{Id:NumT.ID, Value:NumT.StationNumber},
BaitLeft: BLeft,
BaitAdded: BAdded,
Faeces: FaecesYN,
InspectionDate: Today()}
))
I feel I am missing something very simple, thank you for your time.