Need assistance with VBA (array creation) for logarithmic regression forecast UDF

LRobert

New Member
Joined
Nov 12, 2019
Messages
4
MY GOAL:
My goal is to create a uniform set of UDFs that perform forecasts under various forms of regression, such as exponential, logarithmic, and power. Excel has several native functions for forecasting under various forms of regression, but there are several and the syntax is not uniform.

I created this UDF for forecasting using linear regression to serve as an example here:

Function Forecast_Lnr(X As Range, knownYs As Range, knownXs As Range)
Forecast_Lnr = Application.Forecast(X, knownYs, knownXs)
End Function​

This is identical to Excel’s native function:

=FORECAST(X, knownYs, knownXs)​

I would like to create a similar UDF for forecasting using exponential regression and will use the syntax for other UDFs. This requires a natural log transform of Range knownXs. Excel’s native formula for forecasting using exponential regression is:

=FORECAST(LN(X), knownYs, LN(knownXs))​

MY PROBLEM:
I am having difficulty translating the indicated native formula to VBA. Specifically, I am having difficulty creating an array that is the natural log transform of Range knownXs represented above as LN(knownXs). I started with this function:

Function Forecast_Log(X As Range, knownYs As Range, knownXs As Range)
Forecast_Log = Application.Forecast(Application.Log(X), knownYs, Application.Log(knownXs))
End Function​

and found it did not work. I then took an honest shot at building an array for LN(knownXs) with a loop and still could not get the UDF working.

MY ASK:
I am requesting help with creating an interim step for Forecast_Log() that loops through the knownXs input and creates an array of their natural logarithms. Alternatively, I simply need assistance with Fixing Forecast_Log(). You help will be greatly appreciated.
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
... and found it did not work...
Could you please provide more detail on what exactly was not working?

Meanwhile, try
Code:
Function Forecast_Log(X As Range, knownYs As Range, knownXs As Range)
    Forecast_Log = Application.Evaluate("FORECAST(LN(" & X.Address & ")," & knownYs.Address & ",LN(" & knownXs.Address & "))")
End Function
 
Upvote 0
Could you please provide more detail on what exactly was not working?

Meanwhile, try
Code:
Function Forecast_Log(X As Range, knownYs As Range, knownXs As Range)
    Forecast_Log = Application.Evaluate("FORECAST(LN(" & X.Address & ")," & knownYs.Address & ",LN(" & knownXs.Address & "))")
End Function


Thank you! Worked like a charm!
 
Upvote 0

Forum statistics

Threads
1,214,599
Messages
6,120,448
Members
448,966
Latest member
DannyC96

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top