I need to have only '>' instruction. But it has 'greater than or equal to'. I don't want '=' because if it is 60 I need the PLC to retain that value not resetting it to zero. But if it is 61 (above 60) it should be reset to 0
Actually, you don't need that. There are two approaches. First, change the reset threshold to 61, and reset if count => 61. OR, reverse the order because there is a < operator, so reset if 60 < count.
The first two things I thought of with your application are if there is any possibility of shaft rotation reversing, even slightly? If so, you may need to allow for how to figure it out and not count a tooth detection (or you may even need to subtract it).
Second, as a prox starts to come into range of the tooth, it might bounce slightly or flash on an off, so you may want to filter the input so there's no risk of getting multiple counts on one tooth. Some AD plc allow control of filtering by configuration, or you can do it in ladder with a timer or scan counter.