RET Posted June 26, 2002 Posted June 26, 2002 I am trying to create a report from a running balance field. The things is that I only want to list the records with names and balances that owe money. In other words I only want to list records with balances above $0. How would begin to create this calculate this? RET
RussBaker Posted June 26, 2002 Posted June 26, 2002 Include a find step as part of the script that produces your report. Find records with a balance > 0.
RET Posted June 26, 2002 Author Posted June 26, 2002 I need a little more help with this. How would this script read? RET
RussBaker Posted June 26, 2002 Posted June 26, 2002 Probably best to create a script that just finds balances greater than zero, and then use this as a sub-script. To create the script... Perform and find for >0 in the balance field, create a script called "Find Balances Greater Than Zero", delete all the steps except the Find[Restore] step. Done. The finding >0 is now remembered in that script. When you want to show you records, this new script should be called as part of your major script. Without knowing exactly how you have set things up, here is an example. # This script finds the balances greater than zero and previews the report Perform Script [Find Balances Greater Than Zero] Sort [by whatever criteria you use to produce the report or sub-summaries] Go To Layout [Report Layout] Enter Preview Mode [Pause] Enter Browse Mode Go To Layout [Original Layout] Go To Layout
Recommended Posts
This topic is 8190 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now