Hello all. I need to extract the characters from a text string in several cells. Each cell has 78 characters in them.I need the characters from 45 and 61. Any suggestions? Thanks.
Hello all. I need to extract the characters from a text string in several cells. Each cell has 78 characters in them.I need the characters from 45 and 61. Any suggestions? Thanks.
Hi,
This will give you the 45th character:
=MID(A1,45,1)
This will give you the 61st character:
=MID(A1,61,1)
This will give you the 45th through to 61st characters (inclusive):
=MID(A1,45,17)
So you need the 45th and 61st characters (or 45 to 61)?
If the first
=MID(A1,45,1)&MID(A1,61,1)
Does that work for you?
ChemistB
My 2?
substitute commas with semi-colons if your region settings requires
Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)
Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks