This is a VBA code to remove the user IDs from the exported spreadsheet. Apply the following code and run the macro to remove all User IDs from the spreadsheet
Sub RemoveUserIDs()
'run against rows 1 to 10, if you want more change the start and end below
start_of_range = 2
end_of_range = ActiveSheet.UsedRange.Rows.Count
'currently changes cells in colum A if you want B change to 2, C to 3 etc etc
colum_start = 1
For col = start_of_range To ActiveSheet.UsedRange.Columns.Count
For t = start_of_range To end_of_range
newstring = ""
For i = 1 To Len(Cells(t, col))
If Not IsNumeric(Mid(Cells(t, col), i, 1)) And Mid(Cells(t, col), i, 1) <> "#" Then
newstring = newstring & _
Mid(Cells(t, col), i, 1)
End If
Next i
newstring = Replace(newstring, ";;", ", ")
newstring = Replace(newstring, ";", "")
Cells(t, col).Value = newstring
Next t
Next col
ActiveWorkbook.Save
End Sub