Hello Everyone ! I have a canvas app where I have kept some fields as required or mandatory and some fields are not mandatory. As per the requirement there is a finish button which needs to be enabled when all the required fields are filled.
I am using this function but no luck :
If(
IsEmpty(
Filter(
colRequiredInTransportSet,
IsBlank(QR_Code) || IsBlank(SAP_Mat_No) || IsBlank(Item_SN) || IsBlank(Manufacturer_Short)
)
),
DisplayMode.Edit,
DisplayMode.Disabled
)
In this colRequiredInTransportSet I have this info :
ClearCollect(
colRequiredInTransportSet,
Filter(
'Log.t_Transport_Set',
Required = true
)
);
Any and every help is appreciated. Thanks !!!!