PowerShell * ConvertTo-HTML * Set-CellColor

时间:2017-08-16 17:11:26

标签: html powershell

我正在运行一个PS代码,将结果转换为 HTML 突出显示 True 启用<<> / strong>如果找到绿色

Set-CellColor -Property Enabled -Color Green -Filter "Enabled -eq 'True'" 

结果正常:

enter image description here

我想要的是对已锁定的列执行相同操作,因此我将代码修改为:

 Set-CellColor -Property Enabled -Color Green -Filter "Enabled -eq 'True'" | Set-CellColor -Property Locked -Color Red -Filter "Locked -eq 'True'" |

结果如下:

enter image description here

已锁定的列中,它有点工作并且红色 True ,但不幸的是,修改后的代码也会更改单元格的颜色已启用列也会红色

我需要将绿色单元格保留在已启用列中,只需将红色颜色设置为 已锁定列中。任何人都可以告诉我我编码错误。

此致

0 个答案:

没有答案