I am trying to separate a data in a cell into columns, I do it with vba but when running the code a popup message shows up asking me to accept, I don't need to accept something since I'm running the code to get what I want. this is the code:
Sub Separaren4()
Range("AZ3").TextToColumns Destination:=Range("AZ3"),
DataType:=xlFixedWidth, _
FieldInfo:=Array(Array(0, 1), Array(9, 1), Array(19, 1), Array(29, 1)), _
TrailingMinusNumbers:=True
End Sub
Try adding
before your code and set it to True after.