Hi,
In formula below I am using DropColumns to remove Coulmns with null results. The formula is working but Service Required is a choice field in a SharePoint List and the CountA does not see the Value selected and result is 0.
How can I reference the Value of Choice selected in 'Service Required' so I can check if it is null?
Screenshots of collection below.
ClearCollect(removedNulls
,If(CountA(lastRecords.'Bin Location to be emptied?')=0,DropColumns(lastRecords,'Bin Location to be emptied?')
,If(CountA(lastRecords.'PO Name')=0,DropColumns(lastRecords,'PO Name')
,If(CountA(lastRecords.'Transport Service Requested')=0,DropColumns(lastRecords,'Transport Service Requested')
,If(CountA(lastRecords.'PO Name')=0,DropColumns(lastRecords,'PO Name')
,If(CountA(lastRecords.'Schedule Required')=0,DropColumns(lastRecords,'Schedule Required')
))))))
lastRecords Collection

Value of field_7 ('Service Required')

Thanks Rodney