Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI All,
I am not able to figure out the issue with this expression:
=Count({<upper([Curr Status])={'MET'}>}Key)
Please help.
Thanks
Sam
And if you really want to insist on UPPER, you can do it like this:
=Count({<[Curr Status]={"=UPPER([Curr Status])='MET' "}>} Key)
You cannot use a function (Upper) before = in your set modifier.
You might want to do it in the script itself or use MET as it may be spelled in your database.
HTH
Best,
S
maybe without set analysis
count(if(upper([Curr Status])='MET', Key))
I think that it is not case sensitive at all, that is there is no difference between
=Count({<[Curr Status]={'MET'}>}Key)
and
=Count({<[Curr Status]={'met'}>}Key)
And if you really want to insist on UPPER, you can do it like this:
=Count({<[Curr Status]={"=UPPER([Curr Status])='MET' "}>} Key)
Thanks all for your response!
You see Michael, it is case sensitive after all!
Thanks for testing!
I see, but it is very strange. I'm just re-testing this simple expression:
count ({<Field={"*abc*"}>} Field)
and
count ({<Field={"*ABC*"}>} Field)
They return the same exact result. The actual values in the Field are all capital.