Help with converting Excel formula to FM Calc

  • Follow


I have an Excel formula that I would like to convert over to Filemaker 
calculation in my database. When I put in the field names I get an error 
on too few parameters.

Any help would be greatly appreciated!


Excel Formula   =IF(AND(L5>=0.8),M5,0)


FM Field Name
L5 = Prob
M5 = Dollar
Forecast =  (The Calc field)    IF(AND(Prob>=0.8),Dollar,0)
0
Reply john.Smith138 (2) 5/18/2010 3:28:18 AM

In article <o7qdnTdelc7OlG_WnZ2dnUVZ_judnZ2d@earthlink.com>, John Smith
<john.Smith@example.net> wrote:

> I have an Excel formula that I would like to convert over to Filemaker 
> calculation in my database. When I put in the field names I get an error 
> on too few parameters.
> 
> Any help would be greatly appreciated!
> 
> 
> Excel Formula   =IF(AND(L5>=0.8),M5,0)
> 
> 
> FM Field Name
> L5 = Prob
> M5 = Dollar
> Forecast =  (The Calc field)    IF(AND(Prob>=0.8),Dollar,0)

That Excel formula has an unnecessary "And" operator in there since it's
only 'and'ing one parameter. It really only needs to be:

      If (L5>=0.8, M5, 0)

which is then the same formula you can use in your FileMaker database,
i.e.
      If (Prob>=0.8; Dollar; 0)


Helpfull Harry  :o)
0
Reply your.name2 (344) 5/18/2010 4:13:08 AM


Your Name wrote:
> In article <o7qdnTdelc7OlG_WnZ2dnUVZ_judnZ2d@earthlink.com>, John Smith
> <john.Smith@example.net> wrote:
> 
>> I have an Excel formula that I would like to convert over to Filemaker 
>> calculation in my database. When I put in the field names I get an error 
>> on too few parameters.
>>
>> Any help would be greatly appreciated!
>>
>>
>> Excel Formula   =IF(AND(L5>=0.8),M5,0)
>>
>>
>> FM Field Name
>> L5 = Prob
>> M5 = Dollar
>> Forecast =  (The Calc field)    IF(AND(Prob>=0.8),Dollar,0)
> 
> That Excel formula has an unnecessary "And" operator in there since it's
> only 'and'ing one parameter. It really only needs to be:
> 
>       If (L5>=0.8, M5, 0)
> 
> which is then the same formula you can use in your FileMaker database,
> i.e.
>       If (Prob>=0.8; Dollar; 0)
> 
> 
> Helpfull Harry  :o)
Thanks Harry!
0
Reply john.Smith138 (2) 5/21/2010 3:23:41 PM

"John Smith" <john.Smith@example.net> wrote in message
news:jamdnYY4e8fgOGvWnZ2dnUVZ_sKdnZ2d@earthlink.com...
> Your Name wrote:
> > In article <o7qdnTdelc7OlG_WnZ2dnUVZ_judnZ2d@earthlink.com>, John Smith
> > <john.Smith@example.net> wrote:
> >
> >> I have an Excel formula that I would like to convert over to Filemaker
> >> calculation in my database. When I put in the field names I get an
error
> >> on too few parameters.
> >>
> >> Any help would be greatly appreciated!
> >>
> >>
> >> Excel Formula   =IF(AND(L5>=0.8),M5,0)
> >>
> >>
> >> FM Field Name
> >> L5 = Prob
> >> M5 = Dollar
> >> Forecast =  (The Calc field)    IF(AND(Prob>=0.8),Dollar,0)
> >
> > That Excel formula has an unnecessary "And" operator in there since it's
> > only 'and'ing one parameter. It really only needs to be:
> >
> >       If (L5>=0.8, M5, 0)
> >
> > which is then the same formula you can use in your FileMaker database,
> > i.e.
> >       If (Prob>=0.8; Dollar; 0)
>
> Thanks Harry!

I meant to add that Excel's formulas use the And operator (as well as the Or
operator) in a rather peculiar way:

     And (Test1, Test2, Test3, ...)

whereas FileMaker and most programming languages use a more normal approach:

     (Test1) and (Test2) and (Test3) and ...

That might make it easier for you to convert any more Excel formulas.


Helpfull Harry  :o)



0
Reply your.name2 (344) 5/21/2010 9:43:24 PM

3 Replies
97 Views

(page loaded in 0.01 seconds)

Similiar Articles:








7/22/2012 12:24:31 AM


Reply: