Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Sv translation
languageen

BellaDati allows you to display text-based KPI labels. Use this feature to translate rates info easily readable tiers or as alternative to conditional formatting.

Example:

M_RATING@AVG indicator stores average rating of the institution. Instead of displaying numbers with conditional formatting, report requires to have text-based evaluation including 'At-Risk', 'Bellow Average', 'Average', 'Good', and 'Excellent'. Use code bellow to obtain such result.

Code Block
rating = '';
if (M_RATING@AVG<0.59){rating = 'At-Risk'}
if (M_RATING@AVG>0.60){rating = 'Bellow Average'}
if (M_RATING@AVG>0.80){rating = 'Average'}
if (M_RATING@AVG>0.85){rating =  'Good'}
if (M_RATING@AVG>0.90){rating =  'Excellent'}
return rating;

Result:

Next Steps

List siblings

Sv translation
languageja

BellaDatiでは、テキストベースのKPIラベルを表示できます。BellaDatiでは、テキストベースのKPIラベルを表示できます。 この機能を使いレート情報を読みやすい層や条件的フォーマッティングの代わりとして翻訳できます。

:

M_RATING@AVG インディケーターは機関の平均レートを蓄積します。条件的フォーマッティングで数字を表示する代替として、レポートはインディケーターは機関の平均レートを蓄積します。条件的フォーマッティングで数字を表示する代替として、レポートは'リスク有り', '平均以下', '平均', '良好', '最高'を含むテキストベースの評価が必要です。以下のコードを使ってこのような結果を得てください。を含むテキストベースの評価が必要です。以下のコードを使ってこのような結果を得てください。

Code Block
rating = '';
if (M_RATING@AVG<0.59){rating = 'At-Risk'}
if (M_RATING@AVG>0.60){rating = 'Bellow Average'}
if (M_RATING@AVG>0.80){rating = 'Average'}
if (M_RATING@AVG>0.85){rating =  'Good'}
if (M_RATING@AVG>0.90){rating =  'Excellent'}
return rating;

結果:

次に

List siblings