Hi @Matt383 ,
Even if there is no signature in the Pen Input control, there should be JSON string for the blank image in the collection, and it should be end with the part from my previous post:

My formula was to check the end part of the JSON strings from the two signatures to replace any signature with the JSON of image 10
Patch(
Malcolm,
Defaults(Malcolm),
{
Signature1: If(
EndsWith(
CollectGallery.Selected.Signature1,
"MgQOABYzEA52Z8YEEAAAAASUVORK5CYII="
),
CollectGallery.Selected.Image10,
CollectGallery.Selected.Signature1
),
Signature2: If(
EndsWith(
CollectGallery.Selected.Signature2,
"MgQOABYzEA52Z8YEEAAAAASUVORK5CYII="
),
CollectGallery.Selected.Image10,
CollectGallery.Selected.Signature2
),
Image10: CollectGallery.Selected.Image10
}
);
SaveData(KBLMalcolm."MalcolmKeep")