Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set analysis help

I want a chart to display the measures of one "Region" only,

So I modified sum(ApprovedDemand)

as

sum({<Region='Region 1'>}ApprovedDemand)

but the chart says no Data to display.

What is wrong?

1 Solution

Accepted Solutions
Anil_Babu_Samineni

Make sure whether "Region 1" is the correct value or not. And syntax should be like below

sum({<Region= {'Region 1'} >}ApprovedDemand)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful

View solution in original post

4 Replies
Anil_Babu_Samineni

Make sure whether "Region 1" is the correct value or not. And syntax should be like below

sum({<Region= {'Region 1'} >}ApprovedDemand)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
shuck1985
Contributor III
Contributor III

you are missing brackets.

sum({<Region={'Region 1'}>}ApprovedDemand)

should work like that

Not applicable
Author

Thank You,

It worked.

Not applicable
Author

Thanks,

Qlikview syntax check said expression ok for the wrong expression.