What is the script? VBA? I can't help without knowing more details. If VBA, what is the script? Please post it.
I just created 5 VBA function macros using Excel 2011 on my Mac OSX 10.8.5. When I try to invoke any of them I get the "#NAME?" response, which, I assume from forum postings, is caused by macros being disabled. On re-opening my worksheet, saved
as .xls, I was asked if I wanted to enable macros (answered "yes"), but still get that response. Any assistance appreciated.
Here they are:
Function Kelvin(tempC)
Kelvin = tempC + 273.15
End Function
Function ArrhEa(Ea, Intercept, tempC)
Arrhenius = Intercept * exp(Ea / (8.3144 * Kelvin(tempC)))
End Function
Function AgingTime(res, coef, exp)
' calculate aging time given resistance and power law parameters
AgingTime = Power(coef, 1 / exp) * Power(res, -1 / exp)
End Function
Function AgedRes(time, coef, exp)
'Calculate resistance from aging time
AgedRes = coef * Power(time, exp)
End Function
Function ActEnergy(L1, L2, TC1, TC2, Ea, L0)
'Activation energy and intercept value of Arrhenius equation
Ea = 8.3144 * (L1 / L2) / (1 / Kelvin(TC1) - 1 / Kelvin(TC2))
L0 = L1 * exp(8.3144 * Kelvin(TC1) / Ea)
End Function
[New question split by volunteer moderator from this answered question.
I can't find the Trust Center in Excel Mac - Microsoft Community
The moderator, who tried to get the essence of the question, supplied the title of the new question. The asker of the question may change the title by editing the question, and the moderator will not be offended in any way.
Note from moderator: new questions get answered much faster when asked as new questions. When a new question or follow-up question is tacked onto an answered question you can only hope a moderator stumbles across it and splits it off, which can take
days, or may ever happen.]