Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
tech2
Yak Posting Veteran
51 Posts |
Posted - 2014-02-24 : 14:05:37
|
The exprssion below gives me the calculation, but I want to filter the report to only show 'negative' numbers. Textbox9 is not a field in the dataset.=Fields!QuantityOnHand.Value+ReportItems![Textbox9].Value-Fields!ReorderQuantity.Valuethanks, |
|
Mar
Starting Member
47 Posts |
Posted - 2014-02-25 : 08:25:46
|
WHERE field < 0 |
|
|
tech2
Yak Posting Veteran
51 Posts |
Posted - 2014-02-27 : 14:26:36
|
Thanks for the reply, however, this is column I added at the end of my table. This is not feild that I can include with a WHERE claus. |
|
|
|
|
|