Skip to main content
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

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
Anonymous
Not applicable
Author

Thank you!