So I've gotten one part of this done but having issues with the others here is what I got so far.
Public Function MatrixMatch(LookupValue As String, rng As Range)
Dim i As Integer
Dim j As Integer
Dim m As Integer
Dim n As Integer
Dim rslt As String
m = rng.Rows.Count
n = rng.Columns.Count...
Hello all,
I have an exercise we are doing in class to help better learn the ins and outs of VBA. This is the what we have been given to work with.
****************************************************************************************
The purpose of this exercise is to gain experience with...