Hi Everyone
I have a dropdown in a gallery patching on change. It patches both the value of the dropdown and true/false to another, but I would also like it to patch blank to another column if dropdown selection is blank.
Patch(
Sanford_Pallet_Serial_Number_Record,
ThisItem,
{
SNDumped: !IsBlank(DropdownReason.Selected) && DropdownReason.Selected.Value <> "",
DumpedSNReason: DropdownReason.Selected.Value
}
)
Dropdown is hardcoded with the following.
["","Label Damage","Production Sample","Over Print","Part Box"]
So if I choose "" from my dropdown, I would like it to do what it currently does plus patch "" to the Palletnumber column.