I'm not a IT worker or something like that, however, I'm looking for a way to change the inventary on GP and I was thinking of doing so by VBA.
I would like to scan a code an the split it in two and that the first part gets into Item number and the second part in quantity in the grid zone. But i have find several problems, because even if I achive to split the number, when I try to change the ItemNumber GP doesn't allow me to do it.
This is my code for the windows part
Dim R() As String
R = DividirCB(Reference.Value)
MsgBox /a ver / & R(0)
MsgBox /a ver 2 / & R(1)
End Sub
DividirCB = Split(Codigo, / /)