Can you guys help me with this automation ... condition does not work

- alias: 'Turn on exhaust fan every hour when its 90 degree hot outside'
  trigger:
    platform: time
    hours: '/1'
    minutes: 00
    seconds: 00
  condition:
    - condition: numeric_state
      entity_id: 'sensor.pws_feelslike_string'
      above: '89'
  action:
    - service: homeassistant.turn_on
      entity_id: switch.switch_3

I think your problem is the sensor you are using. It’s the string (which is text). You’d be better off using sensor.pws_feelslike_f instead since it’s numeric. Also, I don’t think you need ‘’ around the entity_id nor the above.

thank you… that one works… solved my problem