Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Tablix SSRS 2008 R2 の行に交互の色を付けて、特定のセルの別の式で色を上書きすることは可能ですか?
セルのみと行のみに色を付けることができましたが、両方はできませんでした。何か案が?
ありがとうございました
いくつかのネストされた関数を使用してBackgroundColorプロパティのロジックを拡張するだけの簡単な例。IIf私は次の表現を使用しました。
BackgroundColor
IIf
=IIf(Fields!val.Value = 3 , "Red" ,IIf(RowNumber(Nothing) Mod 2 = 0, "LightGrey", "LightSteelBlue") )
結果は次のとおりです。