compare 2 reports for the same data

compare 2 reports for the same data

Hi All,

I seem to not be getting any information back in my emails when executing this script.

"
b = Collections[Bin_Number != ""];
bincheck = Master_Bin_List[Bin_Number != b.Bin_Number && Ignore_in_count != false].Bin_Number.getAll();
if(bincheck != null)
{
sendmail
[
    from: zoho.adminuserid
    to: "email address"
    subject: "bin check"
    message: bincheck
]
}
"

I am essentially checking if any bins have not been used, and then send an email list if they have not been used. Anyone can help?