Guest User

Untitled

a guest
Jun 17th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.                 CleanedUpExportedWorksheet = CleanedUpExportedWorksheet & objResult.Cells(nRow, nCol).Value & ";"
  2.                 objResult.Cells(nRow, nCol).Value = objSheet.Cells(currentRow, currentCol).Value
  3.                 If nCol = 1 then
  4.                     If Not CellRegExp.Test(objResult.Cells(nRow, nCol).Value) then
  5.                         objResult.Cells(nRow - 1, nCol).Value = objResult.Cells(nRow - 1, nCol).Value & " " & objResult.Cells(nRow, nCol).Value
  6.                         objResult.Rows(nRow).EntireRow.Delete
  7.                     End If
  8.                 End If
Add Comment
Please, Sign In to add comment