Hello,
I have two collections in the screen OnVisible. They are:
ClearCollect(colKeyCombos1,Filter('Master Key Log',Branch.Value = gblOffice && Status.Value = "3 Approved" && Assigned_x0020_Keys < Key_x0020_Inventory && 'Key Type'.Value <> "Combination"));
ClearCollect(colKeyCombos2,Filter('Master Key Log',Branch.Value = gblOffice && Status.Value = "3 Approved" && 'Key Type'.Value = "Combination"));
They have exactly the same columns as they're coming from the same Data Source. (Actually, I'd like to combine them into one ClearCollect but I keep getting an error when I try it, so I divided them into two.)
How do I merge them into a different collection, or add colKeyCombos2 to colKeyCombos1?
Thanks in advance for your help.