-
I'd like to use Add-ConditionalFormatting to add a custom RGB color to a field. I'm confident the command works as long as I select a [system.drawing.color] named value, like this: However if I provide the Are custom colors even possible? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
A possible alternative to achieve that color would be: Add-ConditionalFormatting -Worksheet $excel.Sheet1 -Address D:D -DataBarColor ([System.Drawing.Color]::FromArgb(229,235,178)) |
Beta Was this translation helpful? Give feedback.
A possible alternative to achieve that color would be: