freecolours Posted December 21, 2002 Posted December 21, 2002 I have a few hundred records in a list view and I like to sum up all the numbers (in the money field) that have "Add" in a different textfield in the same record. I can imagine the calculation would be something like this: If (Type) = "Add" then SUM (money) Does this makes any sense?
jasonwood Posted December 22, 2002 Posted December 22, 2002 I'm thinking you'd first need a new calculated money field that only shows the amount if it is of type "Add" eg: calcAddMoney = If(Type="Add", money, 0) Then sum up the calcAddMoney field
Recommended Posts
This topic is 8078 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