Home |
Search |
Today's Posts |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have no idea how to make them work, nor can I see them when I call
up the Macro box with f8 from the sheet with my test data. They have args and so must be called by other procs; this is why they do not show up in the Macros dialog. WksToTabFile is what you need to load the sheet into a string var. This is done by the line to write to file and so you just... MyStr = Join(vTmp, vbCrlf) Replace(MyStr, sFind, sReplace) ...then load MyStr back into an array of arrays OR a 2D array... vTmp = Split(MyStr, vbCrLf) ...and loop thru to create array of arrays... For n = LBound(vTmp) To UBound(vTmp) vTmp(n) = Split(vTmp(n), vbTab) Next 'n ...and choose 1 of the methds to put the data back into the sheet. -- Garry Free usenet access at http://www.eternal-september.org Classic VB Users Regroup! comp.lang.basic.visual.misc microsoft.public.vb.general.discussion |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
find and replace data | Excel Worksheet Functions | |||
Find/Replace Event or Find/Replace for Protected Sheet ... | Excel Programming | |||
find and replace - replace data in rows to separated by commas | Excel Worksheet Functions | |||
Replace method - cannot find any data to replace | Excel Programming | |||
Find and Replace Data from one into another | Excel Programming |