How about:
if(x=y,TRUE,"<>TRUE")
It appears that you are attempting to create a
computed criteria. Computed criteria always return
a boolean result, and <blank> or "" aren't boolean.
There's your 1st problem. =x=y would be a more
appropriate formula for a computed criteria. What
cell reference are you substituting for x, y?
What do you have entered in the first row of
criteria range column that contains this formula?
I think I've got a workaround... the "<>TRUE" wouldn't work, since I need to also include TRUE, i.e. "<>=True". Here's a little more detail on the scenario...
I have a database of patient data (hematology):
wbc plt mvc hgb ...etc
.7 .3 3 TRUE
some of this data is a numerical result, some of it is True/False flag results. Depending on which procedure/test is performed on the patient only some of the results comeback and are entered in the database, the remaining unused results are entered as 0. I have to test for certain criteria depending on which procedure was performed... the problem I was having was this: If a certain procedure was used, it wouldn't test the true/false flag criteria. I thought I could have an IF(Procedure = X,TRUE,"") in the DCOUNT criteria field... no go. My work around was to set up a second row of criteria. If the procedure which excluded the true/false flag was run, the first row tests for TRUE, and the second row tests for FALSE (all inclusive basically). If a different procedure is run that tests against that TRUE/FALSE flag, then both rows equal TRUE or FALSE, depending on which one the user wants to test for......
my apologies for the long windedness (and also in case none of that made sense...)
I think I've got it working now, thanks for the comments.