![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
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) |
)
#3
| |||
| |||
|
|
In article <o7qdnTdelc7OlG_WnZ2dnUVZ_judnZ2d (AT) earthlink (DOT) com>, John Smith john.Smith (AT) example (DOT) 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 )Thanks Harry! |
#4
| |||
| |||
|
|
Your Name wrote: In article <o7qdnTdelc7OlG_WnZ2dnUVZ_judnZ2d (AT) earthlink (DOT) com>, John Smith john.Smith (AT) example (DOT) 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! |
)![]() |
| Thread Tools | |
| Display Modes | |
| |