Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
jpapador
Partner - Specialist
Partner - Specialist

ALL Command

What I am trying to do is have QV show me the invoice price when description = 'A' but instead of just showing me 1 - A, I want it to show me all it's description values.  In the set analysis I currently have Sum({$<Description ={'A'}>}Price).  So essentially I am looking for something like if invoice has a value of A in description, show me all it's description values.

InvoiceDescription
1A
1B
1C
2F
2B
2C
1 Solution

Accepted Solutions
Not applicable

try this

Sum({$<Invoice =P({1<Description={'A'}>}Invoice)>}Price)

View solution in original post

4 Replies
er_mohit
Master II
Master II

Try This

Sum({$<Description =P({1<Description={'A'}>})>}Price)


Gysbert_Wassenaar

See attached example.


talk is cheap, supply exceeds demand
Not applicable

try this

Sum({$<Invoice =P({1<Description={'A'}>}Invoice)>}Price)

jpapador
Partner - Specialist
Partner - Specialist
Author

Thank you very much.  I'm very curious about what that syntax actually means though.