how to split a string with multiple delimeters in vba excel?
I want to split a string with multiple delimeters using Excel VBA. One of the strings is: d1-d2 d3 d4 We have a dash…
81 expert-verified Q&A posts in this category, sourced from the top-voted answers on Stack Overflow.
I want to split a string with multiple delimeters using Excel VBA. One of the strings is: d1-d2 d3 d4 We have a dash…
I have team members that need to be able to checkin VBA modules/classes created in Excel 2007/2010. I want to be able to use…
I must work with nightmare Excel files. (I didn't create them, I just have to work with them). They were so big (more than…
I'm having big problems doing operation with the date in Excel VBA. I have a form that has a textbox where the user will…
I need a code to loop through all the records in a table so I can extract some data. In addition to this, is…
I recently took a large, stable XLSM file, and split it apart into an XLAM and XLSX. Thousands of cells in the XLSX call…
I need to add the var in array Public Sub Testprog() Dim test As Variant Dim iCounter As Integer If test = Empty Then…
Trying to use Excel VBA to capture all the file attributes from files on disk, including extended attributes. Was able to get it to…
It appears that regex (as in regular expressions) is not supported in excel, except via VBA. Is this so, and if it is, are…
I am trying to clean up some existing code Sheets("Control").Select MyDir = Cells(2, 1) CopySheet = Cells(6, 2) MyFileName = Dir(MyDir & "wp*.xls") '…