Ask a Question related to FileMaker, Design and Development.
-
Bridget Eley #1
Re: Average Invoice value problem
Hi Jason
Make calc_RoundTotal a conditional statement that only shows the round total
if the record is not a credit note.
Bridget Eley
in article [email]5960d170dfaa31f8818edaab569a544c@news.1usenet.com[/email], JJ at
[email]JJ@jj.com[/email] wrote on 22/7/03 5:25 PM:
> I have a calc field in my invoices file of:
> Average(Invoice::calc_RoundTotal)
>
> this gives me the avarage value of invoices for a particluar customer.
>
> The problem is it also takes into account credit notes when doing the
> calc.
>
> How can I eradicate credit notes from the calculation?
>
> Thanks in advance
>
>
> Jason
>
> --Bridget Eley Guest
-
Invoice entry
As I wrote in summary , want to enter Invoice and have stock entered! I created tables like 1)Invoice 2)Supplier 3)Merchandise As I have Invoice... -
average days
I have a db with two colums create_date and finish_date. What I would like to do is take the datediff of each row , add them togehter, then divide... -
average using lingo
i need a huge hand with something i need to write a function to calculate the average of a sequence and return the result. however it should only... -
Invoice Structure?
Hi Group Just trying to get some thoughts on the best / efficient way to handle this type of invoicing or some ways you may have handled this. ... -
invoice
As I can create an invoice in Web matrix presenting/displaying subtotla and the taxes and the total of the invoice thanks -
JJ #2
Average Invoice value problem
I have a calc field in my invoices file of:
Average(Invoice::calc_RoundTotal)
this gives me the avarage value of invoices for a particluar customer.
The problem is it also takes into account credit notes when doing the
calc.
How can I eradicate credit notes from the calculation?
Thanks in advance
Jason
--
JJ Guest
-
Matt Revenaugh #3
Re: Average Invoice value problem
Create a second field of type calculation.
myField = If(Invoice::calc_roundTotal > 0, Invoice::calc_roundTotal , "")
Now average myField
Matt Revenaugh
------
On 7/22/03 12:25 AM, in article
[email]5960d170dfaa31f8818edaab569a544c@news.1usenet.com[/email], "JJ" <JJ@jj.com> wrote:
> I have a calc field in my invoices file of:
> Average(Invoice::calc_RoundTotal)
>
> this gives me the avarage value of invoices for a particluar customer.
>
> The problem is it also takes into account credit notes when doing the
> calc.
>
> How can I eradicate credit notes from the calculation?
>
> Thanks in advance
>
>
> Jason
>
> --Matt Revenaugh Guest



Reply With Quote

