-1

以下のステートメントがクラッシュしてしまい、その理由がわかりません。現在のデータセット内のフィールドのみを参照できることを示す 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")
          )
      )
    )
)
4

1 に答える 1

1

IIF(Fields!Quantity.Value)<=99 --> 問題は IIF(Fields!Quantity.Value <=99

于 2013-03-28T17:40:46.363 に答える