
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Expression
=sum({$<[PCI_Op_Name]={">=$(v_value)"}>}Direct_Cost) expresssion is ok butt on chart no value is displayed
v_value=10000
kindly check the expression
- Tags:
- new_to_qlikview
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
only can compare or filtered numerric through >= or <= symbol.
but varchar field can filtered through = symbol


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try like this:
Sum({<[PCI_Op_Name]={">=$(=v_value)"}>}Direct_Cost)
Hope this helps you.
Regards,
Manideep


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
i think expression is worng. PCI_Op_Name field is varchar or numeric ,if varchar [PCI_Op_Name]={">=$(v_value)"} expression won't work. only greater then or less then operator used for numeric values comparsion.
please explain what your trying achive thorugh expression. we can able to help.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Is the the PCI_Op_Name a string value?
So for example.
PCI_Op_Name = Joe Bloggs
v_value = 10000
In your set analysis you are returning only Joe Bloggs (PCI_Op_Name) > 10000 which would return Null.
What are you trying to achieve?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
PCI-OP_name is varchar
when i am using = sign it works butt when i used >= sign it does not work

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
What values exist in your field?


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
only can compare or filtered numerric through >= or <= symbol.
but varchar field can filtered through = symbol

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am assuming that you have numeric and string values in the field.
So something like this should work
=Sum({<
PCI_Op_Name = {"=IsNum(PCI_Op_Name) =-1"} - {"<10000"}
>} Direct_Cost)
