以下のステートメントがクラッシュしてしまい、その理由がわかりません。現在のデータセット内のフィールドのみを参照できることを示す 500 数量でエラーが発生しています (私はそうであると信じています)!!!! 誰でも助けることができます。
ありがとう
=IIF(
( Fields!Quantity.Value>=500,
(Fields!QTY500_.Value, "SellingPrice"),
IIF(
Fields!Quantity.Value<=499 AND Fields!Quantity.Value >=100,
(Fields!QTY100_499.Value, "SellingPrice"),
IIF(
Fields!Quantity.Value<=99) AND (Fields!Quantity.Value)>=10,
(Fields!QTY10_99.Value, "SellingPrice"),
(Fields!QTY1_9.Value, "SellingPrice")
)
)
)
)