HSVSATURATION
Syntax
=HSVSATURATION(color)
Arguments
| Argument | Type | Description |
|---|---|---|
| color | Color | The color |
Examples
=HSVSATURATION("#bf4040")→0.66492146559685864
Gets the saturation for the color represented by the hex color code #bf4040 (dark red)
=HSVSATURATION(RGB(0, 255, 0))→1
Gets the saturation for a color having an RGB value of green
=HSVSATURATION(0)→#ERROR!
Attempts to get the saturation from an integer, which is invalid because it cannot be converted to a color
Updated 2 months ago