私は、注文と在庫の 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) )
これを書こうとしてきた方法はすべて無効です。どんな助けでも大歓迎です。