Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Message inside a Chart

Hi

I can’t find in Chart Properties how I can change the text which appears in Chart in case the Chart is not calculated.

It does not belong to Error Message Setting.


Could you please have a look in the file attached?


Thank you in advance,


Larisa

1 Solution

Accepted Solutions
maxgro
MVP
MVP

if I understand in genaral (1st one) tab

1.png

View solution in original post

4 Replies
maxgro
MVP
MVP

if I understand in genaral (1st one) tab

1.png

NickHoff
Specialist
Specialist

Under General you will have the calculated condition which you'd like to to occur before showing the data.  So you set that first, then under Error Messages under calculation condition unfulfilled you'll add your condition similar to the following:

=IF((GetSelectedCount(@AdHocDim) = 0 AND GetSelectedCount(@AdHocPHIDim) = 0) AND GetSelectedCount(@AdHocMetric) = 0,

       'Select a dimension(s) and metric(s) to create a report.',

       IF((GetSelectedCount(@AdHocDim) > 0 OR GetSelectedCount(@AdHocPHIDim) > 0) AND GetSelectedCount(@AdHocMetric) = 0,

       'Select a metric(s) to create a report.',

       'Select a dimension(s) to create a report.'))

This is what I use for my calculated condition for this example:

(GetSelectedCount(@AdHocDim) > 0 OR GetSelectedCount(@AdHocPHIDim) > 0)

AND

GetSelectedCount(@AdHocMetric) > 0

Anil_Babu_Samineni

You need to calculate depends on your BRD from your Conditional calculation on General tab of your Chart. Then choose Error Messages and Go to that Calculation Condition Unfulfilled then write what ever you want

Good Luck

Please add me Anil_Babu_Samineni to interact faster when reply back. Speak low think High.

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
Anonymous
Not applicable
Author

Thank you!