I have a Task owner column in SharePoint which is a Person or Group column. I am trying to check if this column is empty in Powershell

if($_["Task Owner"] -eq null)

This gives me the below error

you must provide a value expression following the '-eq' operator

Any help would be appreciated, TIA

有帮助吗?

解决方案

The issue is that PowerShell expects null value to be specified as $null,

In your case, this is the correct syntax:

if($_["Task Owner"] -eq $null)

其他提示

My bad, I missed the $ in front of the null

It worked once I changed null to $null

if($_["Task Owner"] -eq $null)
许可以下: CC-BY-SA归因
scroll top