What does "," mean in a formula?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

This is the formula put together and I was wondering if anyone knew what the
comma in between the quotations meant. Could you explain what the formula
means?

Thanks a bunch.

=IF(D16="","",D16)
 
If D16 is nothing (empty), then return nothing, otherwise return the value in
D16.

HTH
Jason
Atlanta, GA
 
Hi!

The comma is simply an argument separator.

The function is IF. The IF function uses 3 arguments and the arguments are
separated by commas.

=IF

Argument 1 is D16="". Meaning D16 = blank

The first argument in an IF function is a logical test. That is, is this
condition TRUE or FALSE.

Argument 2 is "". Meaning blank.

The second argument in the IF function is the value to return if the logical
test is TRUE.

Argument 3 is D16. Meaning the value in D16.

The third argument in the IF function is the value to return if the logical
test is FALSE.

Put it all together:

IF D16 = blank, return blank, return D16

Biff
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top