Guest User

Untitled

a guest
Jan 18th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. ' Work out the column to insert
  2. insert_col_pos = Application.Match("Postcode", title_range, 0)
  3. If insert_col_pos = xlErrNA Then Exit Function ' Exit if the column to insert next to does not exist
  4. insert_col = GetInsertCol(insert_col_pos + 1)
  5.  
  6. If insert_col_pos = CVErr(xlErrNA) Then Exit Sub
Add Comment
Please, Sign In to add comment