Microsoft
Software
Hardware
Network
Question : Find first space in a cell and show all that is on the left of it
I tried:
=MID(A6,1,FIND(" ",A6))
but I need it to account for 1 or more spaces in other words
"1234 xyz" would return 1234
"1234 xyz" would also return 1234
Answer : Find first space in a cell and show all that is on the left of it
Out of curiosity, try this with the same test text:
=FIND(CHAR(160),A6)
I wonder if what you had there is the infamous non-breaking space...
Random Solutions
I need to stop, then re-start, a thread in a web service using IIS
Finding file owner - getting an error: identity references could not be translated
Gigabit motherboard but only running 100 Mbps on LAN
Accuracy of data
Updating Secondary MX Records
VBA application hangs up at a certain point
I am looking forward to learn about JSF with ICEfaces
Mouseover on div.a changes layout of div.b (pure CSS)
Keep file ownership when using Rsync
How can I prevent my object being overwritten in a for loop?