Jump to content
Server Maintenance This Week. ×

Summary according portal data


R2D2

This topic is 5470 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Hi !

I'm wrestling with my database and now I'm stuck with this problem:

There are invoices in one table. They have Status: "not ready", "waiting for approval" and "approved". The accounting can choose which invoices are shown in the portal. The problem is how to present the Total of each sub group, when portal data is changed. Now it shows only "Grand total" of all sub groups (i.e. even though the invoice is not "approved" yet, it's sum is added to "total")

I hope you understood... ???

Link to comment
Share on other sites

The accounting can choose which invoices are shown in the portal.

If you are filtering the portal by the status, it shouldn't matter ... you should get the total of all invoices which appear in the portal.

You can use cTotalInvoices in Parent as:

Sum ( thatPortal::InvoiceAmt) or

if you have a summary field in Invoices, Just place that on the layout. Place either of these fields outside the portal.

So your relationship would be:

MainTable::ParentID = Invoices::ParentID

AND

MainTable::gStatus = Invoices::Status

Edited by Guest
Added relationship example
Link to comment
Share on other sites

Thanks LaRetta and Soren ! That Sum -function worked well enough. Those relations are still quite tricky for me, so I find this plain Sum easier.

Link to comment
Share on other sites

This topic is 5470 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.