remove the first character in excel
=REPLACE(A2,1,1,””) with replace function
remove the first character in excel
=REPLACE(A2,1,1,””) with replace function
excel vba array remove first
Public Sub DeleteElementFromArray(ByRef pArray As Variant, ByVal pIndex As Long)
Dim index As Integer
If pIndex >= LBound(pArray) And pIndex <= UBound(pArray) Then
For index = pIndex + 1 To UBound(pArray)
pArray(index - 1) = pArray(index)
Next
If UBound(pArray) - LBound(pArray) > 0 Then
ReDim Preserve pArray(UBound(pArray) - LBound(pArray) - 1)
Else
ReDim pArray(0)
End If
End If
End Sub
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us