This doesn't seem like usual behavior for Excel. I've never seen this happen before. I'll try and explain it as best I can.
I have two spreadsheets, SS-A and SS-B. SS-A has a worksheet, WS-source ,and SS-B has a worksheet, WS-dest in which WS-dest pulls data via a couple of formulas from WS-source.
SS-B has another worksheet, WS-final, which pulls data from WS-dest, again, using formulas. For some reason, the result of the formulas in WS-final fail because the formulas in WS-final "see" the formulas in WS-dest instead of the values of the formulas.
The formulas work in WS-dest. When I look at the spreadsheet in WS-dest, I do not see the formulas in the cells, I see the values of the result of the formulas. However, WS-final's formulas, when trying to use those values fail.
How I have come to this conclusion: WS-dest did not used to use formulas. I hand placed the values in the fields. WS-final worked just fine. A few days ago, I started using formulas to extract the data from WS-source instead of hand-jamming it into WS-dest. Prior to this change, WS-final worked fine. Furthermore, for testing purposes, I replaced a couple of test fields in WS-dest from the formulas to hand-jammed values, which the formulas in WS-final worked again. I took copies of the formulas from WS-final and placed them in unused cells of WS-dest, tweaking the cell references to that the formula would work. As a result, I observed the same behavior.
The macro:
Public Function sbTextToColumn(srcRng As Range) As Variant
Dim vData As Variant
vData = Split(srcTang.Value2, "/")
ReDim Preserve vData(0 To Application.Caller.Columns.Count - 1)
sbTextToColumn = vData
End Function
This is a function that another SO member assisted me with and it works great! I personally am a Linux/Unix guy strong in languages like Perl and PHP. I appreciate your assistance.
WS-final? – brettdj Jan 2 at 4:13Text(one never knows) – JMax Jan 2 at 7:35