Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. ThichTraXanh

    Merge cells

    If it happens again I'll post the code. Thanks
  2. ThichTraXanh

    Do I need a new mouse?

    try unplug the mouse then plug it back, if it doesn't help then plug a working mouse in.
  3. ThichTraXanh

    Merge cells

    :) thanks guys, I didn't know that I can apply directly like that. Excel help shows with Selection. There is a weird thing that I try to understand why it happens that way, and only happen with sub not function. Exam: sub test(intX as integer, strY as string) 'do something end sub test 1...
  4. ThichTraXanh

    Transpose problem

    it seems to me that all your addresses have coma in the last row. Why don't you take the coma as a key to separate each address? Mr. David Lebeau 3l71 Laubert Road Atwater, OH 44201-9792 <--Last row of this address Christine & Thomas Knippenberg Hiram, OH 44234...
  5. ThichTraXanh

    Merge cells

    range("A1:E1").select selection.mergecells = true
  6. ThichTraXanh

    Parsing text file with fixed width Date problem

    because it reads that as numeric, if you format it as text, or custom format then it's ok. If you use excel then when you import the text file, either you import with delimit or width, select the column that you don't want it change, SET IT TO TEXT.
  7. ThichTraXanh

    text box problem

    I don't see leading space as you said, but take a look if you have any special software for language beside English turn on. I don't know why you use textbox.value instead of textbox.text, unless you want to do something not involve TEXT
  8. ThichTraXanh

    Accessing *.bas files from within excel vba

    http://www.tek-tips.com/faqs.cfm?fid=4114 if you can use the open file dialog-box (single/multiple) then your program will be more flexible
  9. ThichTraXanh

    Accessing *.bas files from within excel vba

    Yes. 1. Open excel 2. Press Alt + F11 3. Click Insert(menu) and select Module 4. New folder in Project Window with Module1 5. Right Click Module folder, Select Import File 6. Import your *.bas file
  10. ThichTraXanh

    Excel: How to manipulate text within cells

    Exam: sub SplitText dim varObj, varTemp as variant dim i,j as integer i = 1 j = 2 Do While i <= worksheets(1).Usedrange.Rows.Count '<--Total Rows varTemp = Split(Range("A" & i).Value, " ", -1, vbTextCompare) for each varObj in varTemp cell(i,j) = varObj 'Cell B, cell C...
  11. ThichTraXanh

    Finding text from another list

    Your Code: Sub test_split() Dim varObj As Variant, varTemp As Variant, i As Long i = 2 Do While i <= Range("D1").End(xlDown).Row varTemp = Split(Range("D" & i).Value, " ", -1, vbTextCompare) For Each varObj In varTemp Range("E" & i) = varTemp <-- varObj Next i = i...
  12. ThichTraXanh

    How to extract from a string value

    use split and choose what you want. dim varTemp as variant varTemp = split(string,"/",-1,vbtextcompare) then vartemp will work as Array, select what you want varTemp (0) varTemp(1) ......
  13. ThichTraXanh

    Finding text from another list

    How is your data? I assume as I see exam: 123 Big Walk Road 112A, seperate by space? You should import data as 1 column A1 = 123 Big Walk Road 112A A2 = ....... dim varObj,varTemp as variant vartemp = split(range("A" & row).value," ",-1,vbtextcompare) for each varObj in vartemp 'do what...
  14. ThichTraXanh

    Excel: How to manipulate text within cells

    exam: A1 = 05/09/08 590.25 program: sub SplitText() dim varTemp as variant vartemp = split(range("A1").value," ",-1,vbtextcompare) range("A1").value = varTemp(0) range("B1").value = varTemp(1) end sub You can loop this, get total rows

Part and Inventory Search

Back
Top