In cell B7 I have the letters "abcdefghijkl". I would like a function called "truncate" that takes characters off both the left and right sides.
=truncate(B7, # of chars to delete from left, # of chars to delete from right)
So....
=truncate(B7, 2, 4)
would return "cdefgh"
=truncate(B7, # of chars to delete from left, # of chars to delete from right)
So....
=truncate(B7, 2, 4)
would return "cdefgh"