I've been trying to find the solution for my problem but unfortunately could not find it anywhere.
The thing is that while performing a loop I wanna check if a range contains a non-single (couldn't find any better word for it) numeric content.
What do I mean by non-single numeric? That I would like to distinguish the cells containing numbers like '23', '111', '51' or "=11+12", "=10+20" etc. from numbers in form of formulas having reference to other cells, like "=A1+B1" or =SUM(A1:B1).
I have already tried IsNumeric function but it shows that all the above are numeric and the HasFormula property but this one groups "=11+12" together with e.g. "=A1+B1"
Edit: To make it clear. My goal is to change all the manually inputed data to "0", so if someone inputs simply "200" or makes it in a few steps adding values one by one like "=200+100+400" i want to change all of it to 0. However when there is a formula refering to other cells I wanna leave it alone.
Thanks in advance for your help!