A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

What does " mean in excel



 
 
Thread Tools Display Modes
  #1  
Old March 6th, 2010, 04:34 AM posted to microsoft.public.excel.worksheet.functions
Jane
external usenet poster
 
Posts: 464
Default What does " mean in excel

When working in excel and doing my labs, I am often told to use " " in my
formulas but I don't know what " " stand for and the ! is also used, can
someone explain to me what " " and ! mean?
  #2  
Old March 6th, 2010, 05:09 AM posted to microsoft.public.excel.worksheet.functions
trip_to_tokyo[_3_]
external usenet poster
 
Posts: 932
Default What does " mean in excel

EXCEL 2007

" "

1. This can mean that text is being inserted in the formula.

2. In this example:-

=IF(AND(C2="East",D220),D2*100%,"Not Applicable")

The 2 words in inverted commas are text.

"East" means if the formula finds that text (East) in cell C2.

"Not Applicable" means that Not Applicable will be placed into a cell if the
2 conditions in the formula are found to be false.

If my comments have helped please hit Yes.



"Jane" wrote:

When working in excel and doing my labs, I am often told to use " " in my
formulas but I don't know what " " stand for and the ! is also used, can
someone explain to me what " " and ! mean?

  #3  
Old March 6th, 2010, 05:15 AM posted to microsoft.public.excel.worksheet.functions
trip_to_tokyo[_3_]
external usenet poster
 
Posts: 932
Default What does " mean in excel

EXCEL 2007

!

Here is an example of use of the above.

1. In Sheet1 cell A1 I have the following text:-

sheet1 cell a1

2. In Sheet2 cell A1 I have the followingformula:-

=Sheet1!A1

This returns:-

sheet1 cell a1

- in Sheet2 cell A1.

The above is one example of how ! is used.

Please hit Yes if my comments have helped.

Thanks.









"Jane" wrote:

When working in excel and doing my labs, I am often told to use " " in my
formulas but I don't know what " " stand for and the ! is also used, can
someone explain to me what " " and ! mean?

  #4  
Old March 6th, 2010, 06:50 PM posted to microsoft.public.excel.worksheet.functions
Chip Pearson
external usenet poster
 
Posts: 1,343
Default What does " mean in excel

It is the multiplication operator. E.g., =A1*B1 multiplies cell A1 by
cell B1.

Cordially,
Chip Pearson
Microsoft Most Valuable Professional,
Excel, 1998 - 2010
Pearson Software Consulting, LLC
www.cpearson.com



On Fri, 5 Mar 2010 20:34:49 -0800, Jane
wrote:

When working in excel and doing my labs, I am often told to use " " in my
formulas but I don't know what " " stand for and the ! is also used, can
someone explain to me what " " and ! mean?

  #5  
Old March 6th, 2010, 09:50 PM posted to microsoft.public.excel.worksheet.functions
Gord Dibben
external usenet poster
 
Posts: 20,252
Default What does " mean in excel

Do not use " " in your formulas. That creates a space.

Use "" to return nothing as a condition..

e.g. =IF(A1="","",A1)

Means if A1 is empty, show nothing.....if something in A1 show that.

=IF(A1=" ", " ",A1) is entirely different

Means if A1 contains a space, return a space.

Not good.


Gord Dibben MS Excel MVP

On Fri, 5 Mar 2010 20:34:49 -0800, Jane
wrote:

When working in excel and doing my labs, I am often told to use " " in my
formulas but I don't know what " " stand for and the ! is also used, can
someone explain to me what " " and ! mean?


  #6  
Old March 7th, 2010, 12:58 PM posted to microsoft.public.excel.worksheet.functions
JLatham
external usenet poster
 
Posts: 1,896
Default What does " mean in excel

I think Gord Dibben has given a good explanation of what " " means, and why
you should most often use "" instead g (which I agree with).

The ! is a separator character between a sheet name and a cell range. Such
as:
=Sheet1!A5
says to echo the contents of cell A5 on Sheet1.
and
=SUM('Another Sheet'!A6:A10)
says to perform the SUM function on cells A6:A10 on a sheet named Another
Sheet. In this case, because there is a space in the other sheet's name, you
have to enclose the sheet name in the single quote marks as shown.

Hope this helps.

"Jane" wrote:

When working in excel and doing my labs, I am often told to use " " in my
formulas but I don't know what " " stand for and the ! is also used, can
someone explain to me what " " and ! mean?

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 05:40 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.