FORMAT RULE FOR > 19 and < 25

How do I correctly write a format rule for a column say [column X] >19 AND <25 ??

0 1 260
1 REPLY 1

AND(
[Column] > 19,
[Column] < 25
)

Provided [Column] is the number or decimal type.

Top Labels in this Space