Skip to main content
Participating Frequently
March 11, 2019
Answered

Ratio calculation

  • March 11, 2019
  • 2 replies
  • 851 views

I have a simple ratio calculation to perform as seen below:

if (this.getField("HiBrach").value=="")

{

event.value="";

}

else

{event.value=this.getField("HiAnk").value / this.getField("HiBrach").value;

}

"HiBrach" is derived from multiple (3) fields with a maximum value calculation performed before the ratio operation.

This works no problem.

However, how does the script change if "HiAnk" is also made up multiple fields with a Maximum value calculation.

I haven't been able to solve this!?

This topic has been closed for replies.
Correct answer Thom Parker

Just make sure the calculation order is correct. That's all that maters.

2 replies

Thom Parker
Community Expert
Thom ParkerCommunity ExpertCorrect answer
Community Expert
March 12, 2019

Just make sure the calculation order is correct. That's all that maters.

Thom Parker - Software Developer at PDFScriptingUse the Acrobat JavaScript Reference early and often
Participating Frequently
March 12, 2019

Hi Thom,

Thanks for the response.

In checking the calculation order as suggested, I discovered a syntax error!!!

I did have to adjust the order however, thanks.

Thom Parker
Community Expert
Community Expert
March 12, 2019

It's always something because code is complicated and must be exact. 

Thom Parker - Software Developer at PDFScriptingUse the Acrobat JavaScript Reference early and often
try67
Community Expert
Community Expert
March 11, 2019

It doesn't change at all... Is it not working?