Guest User

Untitled

a guest
Apr 23rd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. Dim cell As Range, str As String * 200: str = "( "
  2. Dim val As String * 200
  3.  
  4. For Each cell In rawData.UsedRange.Cells
  5. val = cell.Value
  6. str = str & Chr(34) & val & Chr(34) & ", "
  7. Debug.print str, val
  8. Next
Add Comment
Please, Sign In to add comment