Finding Help for Microsoft Excel
by Jon Peltier
Saturday, May 31st, 2008
Peltier Technical Services, Inc., Copyright © 2010.
Licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License.
Where can you find help when something in Excel has you stymied? You can use the built-in Excel help system. This sometimes is frustrating, because it doesn’t always find relevant information. But never fear, because there are many sources of information on the internet.
Google
My number one source for Excel and VBA help is Google. Type in a few keywords, and you’ll get thousands of responses. With properly chosen keywords, you’ll be on your way quickly. Google finds helpful web pages and blog posts like those on PeltierTech.com and other people who write about everything they know.
If Google doesn’t get you what you need, there are resources where you can ask questions, and other users of all skill levels share their suggestions. There are many of these, but two of the best are listed below.
Microsoft Newsgroups
These newsgroups are followed by many Excel MVPs, many non-MVPs with strong Excel skills and experience, and many Excel users who may have already solved your problem. They are mirrored on dozens of web sites, usually wrongly presented as being part of these sites. Microsoft also hosts a web interface to these newsgroups, but it is mediocre at best. It’s generally better to go directly to the source:
In an NNTP newsreader (Outlook Express, Netscape, and others), create a new News account, using the news server msnews.microsoft.com. When the connection is made, subscribe to the appropriate newsgroups, including microsoft.public.excel.misc, microsoft.public.excel.programming, microsoft.public.excel.worksheet.functions, and microsoft.public.excel.charting.
Mr Excel
Mr Excel is a huge web-based forum dedicated to Excel, with a strong community of Excel experts and users.
Direct email
It’s often tempting to send an email directly to someone whose previous website or forum post has been helpful. I get a dozen or more unsolicited emails a week asking for general Excel help. I welcome questions and clarifications regarding things I’ve posted on my web site, but I don’t have the time (or motivation) to address many emails out of the blue. It’s more effective to post a question on a newsgroup or on Mr Excel, because (a) many more people will see the question, (b) several people will have a chance to respond to a public post before a single busy individual may get to a stray email. I’d rather answer a public question, because it becomes part of the body of public knowledge, and Google will have a chance to pick it up.
How to Ask a Question
- Take a couple minutes to try Google first. Many questions have been asked and answered a thousand times before.
- Use a descriptive subject line. I skip posts with subjects like “Help!!” or “Excel Question”.
- Write a concise and clear problem statement. State what you are trying to do, what steps you took, and what happened. If you get an error message, include the description in its entirety and not just the error number. Sure it’s an effort to retype it, but the error number may correspond to several different descriptions. Error number 1004 means a procedure halted during execution: very informative.
- Include the Excel version somewhere in your problem statement.
- Write clearly, DON’T TYPE IN ALL CAPITALS, don’t use text message shorthand LOL, proofread your post.
- Be courteous. We are unpaid volunteers, not Microsoft employees, and are doing this to help.
Related Posts:
- Weekend Fun: New iGoogle Interface Unpopular
- How To: Use Someone Else’s Macro
- The Downside of Working in a Cubicle
- Unspecified but Painfully Frustrating Error
- New Series: You Asked For It
- Validation Functions
- I’m back (I think)
- Pardon the Interruption
- Happy New Year in Numbers, Charts, and Links
- File Name Functions
Posted: Saturday, May 31st, 2008 under General.
Comments: 3
Comments
Pingback from Finding Help for Microsoft Excel – Learn Excel
Time: Monday, June 23, 2008, 10:25 pm
[...] Original post by Jon Peltier [...]
Comment from Yohay
Time: Monday, May 4, 2009, 6:40 am
Hi,
I’ve conudcted some procedure in which I’m suppose to retrieve 4 digits number from a long string. pretty complexed procedure but it works.
I want to add a condition with if statement, in which if i don’t find eventually the 4 digits number i’m looking for, the output will be some sort of mistake note (for instance- “Reference’s incorrect!! Plz Check”).
the IF statement is something like this-
=if(cell<=10000,”OK”,”Mistke Noet..”)
[assuming that a wrong output of the original statement would be something like _231 or 231w or 31ws or ... and then I'll get a mistake note, hence the main objective of this IF statement]
Only trouble is, that I have to create some sort of casting to the 4-digits number, so the excel would consider it as numeric, cause it’s basically a string (originally I obtain this number with MID statement).
How do I do that?
Thanx; Have a great day.
Yohay.
Comment from Jon Peltier
Time: Monday, May 4, 2009, 6:56 am
To turn the text into a number numerically, use the “minus minus” technique. When you use text in a formula, and that text can be interpreted as a number, Excel converts it to a number. The simplest and fastest way to do this is to take the negative of the text, but then this has the wrong sign, so a minus in front of that converts it to the right sign.
So if your formula is (for example)
=MID(A1,4,4)
use this to get a numeric value:
=–MID(A1,4,4)



















Write a comment
I welcome comments from my readers. If you have an opinion on this post, if you have a question or if there is anything to add, I want to hear from you. Whether you agree or disagree, please join the discussion.
If you want to include an image in your comment, post it on your own site or on one of the many free image sharing sites, and include a link in your comment. I'll download your image and insert the necessary html to display the image inline.
Read the PTS Blog Comment Policy.