Hello, this may seem a really stupid question and I use excel regularly but i can't figure this out. I got to getting the query setup, but i can't figure out how to use criteria len(cell?) <= 2.
Hello, this may seem a really stupid question and I use excel regularly but i can't figure this out. I got to getting the query setup, but i can't figure out how to use criteria len(cell?) <= 2.
You'd use the field name:
len(FieldName)
When I do len("field") <"3" i get zero results, when I do len([field]) <"3" I get the first words filtered correctly, and then cell 4 till end is not filtered correctly. really frustrating!
You don't want quotes in either place. In SQL view it would look like:
WHERE Len([field]) <3
Is there some kind of setup that doesn't allow for ANY fomulas. Like if I enter a formula in a cell, it never calculates - this is driving me nutz.
You mentioned a query earlier. What exactly are you trying to do, and where is this formula?