Skip to main content

Search

Search

Truncate if first 10characters in text string are digits

Comments

2 comments

  • Avatar
    Peter Thane

    If it is just alpha characters you want to print you could use the Truncation>Character Filter> Alpha only option instead

    0
  • Avatar
    Steven Hou

    Nevermind.. I solved it :)

     

    If IsNumeric(Left(Format.NamedSubStrings("BlanksH").Value,10)) Then
       BlanksH = Mid(Format.NamedSubStrings("BlanksH").Value, 11)
    End If

    1

Please sign in to leave a comment.