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.

link|improve this question

What Excel version, do you have any macros running? is there anywhere that you can post your file on the net? – brettdj Jan 2 at 0:16
Excel 2007. Macros exist! Unfortunately, I can't post this project for many reasons, but the most difficult is because it's on a separate network separate from the Internet. What kind of situation with macros could cause this kind of problem? – Jim Jan 2 at 0:47
Jim, do any of the macros run on the data in WS-final? – brettdj Jan 2 at 4:13
Could you show us some examples of the formulas that doesn't work (within the whole chain WS-Source / WS-Dest / WS-Final). To be sure, please check none of your cells are formatted as Text (one never knows) – JMax Jan 2 at 7:35
2  
Problem could be your custom function using the Value2 instead of the Value property. See support.microsoft.com/kb/182812/en-us for differences. – cmmi Jan 3 at 13:36
show 9 more comments
feedback

1 Answer

up vote 1 down vote accepted

Problem could be your custom function using the Value2 instead of the Value property. See support.microsoft.com/kb/182812/en-us for differences.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.