Hi Folks
I am trying to update numerous records based on a single drop-down value. However, if the drop-down value is blank I do NOT want the selected records to change. I am using the following code which works but updates all selections including blank.
"Devices_collection" is the collection of ALL my records
"ColSelected" is a few records selected from Devices_collection
//CODE
UpdateIf(
Devices_collection,
ThisRecord in ColSelected,
{
'deployment-status': DeploymentStatusUpdate.Selected,
'device-status': DeviceStatusUpdate.Selected,
'device-location': DeviceLocationUpdate.Selected,
'model-lookup': ModelUpdate.Selected
}
);
//END code
thanks in anticipation
paul walker (not fast or furious)