Advertisement
phuoc0191vn

Func Excel

Jun 3rd, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. Function Daohoten(Hoten As String) As String
  2. Dim Temp, i As Long
  3. Temp = Split(WorksheetFunction.Trim(Hoten), " ")
  4. For i = UBound(Temp) To 0 Step -1
  5. Daohoten = Trim(Daohoten & " " & Temp(i))
  6. Next
  7. End Function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement