My "If / Else" condition is always ONLY showing the "else" result. Can someone help to see what's wrong with my code? Thanks

It means that text52 is not the same as text 53. Try to see maybe one of them has a trailing whitespace or something like that.

Thanks J.D. for helping to take a look. After playing around with it, it finally worked only after I removed my input element (#text52) from the repeater (the yellow box). Though the current issue is resolved, I’m still curious as to why it doesn’t work when the input element is inside the repeater. Would greatly appreciate if you have an answer to that?

@buzzzybeebee You didn’t say it’s a repeater. For repeaters you need to refer to the specific element in the repeater scope.
See:
https://www.wix.com/velo/reference/$w/at

https://www.wix.com/velo/reference/$w/repeater/foreachitem

https://www.wix.com/velo/reference/$w/repeater/foritems

https://www.wix.com/velo/reference/$w/repeater/onitemready

@jonatandor35 Thank you for the references!