I am trying to run something if A is the same as B and B is not empty. I can do this check manually before I do thi -NE, but I rather do this in the same check.
if($($ADEmployee.mobile) -ne $($ListEmployee.mobile) -and (!$($ListEmployee.mobile)))
{
do someething
}
can this be done?
Not that I’d ever actually do that in code.