Hello All,
I am kind of new to setting function and I am running into a problem while trying to make a program. Below is my situation
These are the two functions I want to use. Basically FE calculates a number and LD should show up as such if x = 0 FE = 62.5 therefore LD(X) = LD62.5.
The reason for this is because when I go to assign the numbers to excel the assignments go as follows LD62.5 LD125 LD250 and so on. What is the best method for this?
I am kind of new to setting function and I am running into a problem while trying to make a program. Below is my situation
PHP:
Static Function FE(x)
FE = 62.5 * (2 ^ (x - 1))
End Function
Static Function LD(x)
LD = "LD" & FE(x)
End Function
PHP:
For x = 1 To 8
LD = 17 * PA ^ -0.25 * FE(x) ^ -0.85 * length2
Next x
These are the two functions I want to use. Basically FE calculates a number and LD should show up as such if x = 0 FE = 62.5 therefore LD(X) = LD62.5.
The reason for this is because when I go to assign the numbers to excel the assignments go as follows LD62.5 LD125 LD250 and so on. What is the best method for this?
Last edited: