0

私は、注文と在庫の 2 つのタイプに分けられる在庫スナップショット レポートの作成を担当しています。これに加えて、特定のステータスを持つアイテムのみがレポートに表示されます。

I have a parameter that is used to determine the specific date for the report. {?endDate}
I have a field in a view that pulls the date the item was received. {rec_date}
I have a formula field that pulls the group (orders/stock) -- {@grouping}
I have a formula field that pulls the status -- {@state}

基本的に、レコードの選択に必要なものは次のとおりです。

( @grouping = "Orders" and rec_date < {?endDate} and @state in (0,2,5) )

OR

( @grouping = "Stock" and rec_date < {?endDate} and @state in (1,2,3,5,7) )

これを書こうとしてきた方法はすべて無効です。どんな助けでも大歓迎です。

4

1 に答える 1

1

数式も波括弧で囲む必要があります。

( {@grouping} = "Orders" and rec_date < {?endDate} and {@state} in [0,2,5] )

OR

( {@grouping} = "Stock" and rec_date < {?endDate} and {@state} in [1,2,3,5,7] )
于 2012-08-21T14:39:24.833 に答える