2

I'm looking to custom format this values but when my result is 15.0 or 14.9 the formula doesn't work. I've tried to place <= or =< but the custom number format doesn't recognize it.

Here is my current formula.

[>15.0]0.0[color 50]"▲";[<14.9]0.0[red]"▼";0.0

enter image description here enter image description here enter image description here enter image description here enter image description here

player0
  • 124,011
  • 12
  • 67
  • 124
mau
  • 185
  • 11

1 Answers1

3

use:

[>=15.0]0.0[color 50]"▲";[<=14.9]0.0[red]"▼";0.0

enter image description here

enter image description here


update

try:

[>=15.0]0.0[color 50]"▲";[<=14.9999999999999]0.0[red]"▼";0.0

enter image description here

player0
  • 124,011
  • 12
  • 67
  • 124