#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 63
Default If function required

Hi...........If A1 is blank then B1 is "Unpaid" if A1 has numbers then B1 is
"Paid"

i tried the below for "unpaid" and its ok and i need to add the "Paid" also
in this formula
=IF(A1," ","Unpaid")

please help..............

regards,
ravi kumar
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 293
Default If function required

=IF(A1="",("Unpaid"),IF(A10,("Paid"),("")))


"Ravi" wrote:

Hi...........If A1 is blank then B1 is "Unpaid" if A1 has numbers then B1 is
"Paid"

i tried the below for "unpaid" and its ok and i need to add the "Paid" also
in this formula
=IF(A1," ","Unpaid")

please help..............

regards,
ravi kumar

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 63
Default If function required

thank U stew.........................

"stew" wrote:

=IF(A1="",("Unpaid"),IF(A10,("Paid"),("")))


"Ravi" wrote:

Hi...........If A1 is blank then B1 is "Unpaid" if A1 has numbers then B1 is
"Paid"

i tried the below for "unpaid" and its ok and i need to add the "Paid" also
in this formula
=IF(A1," ","Unpaid")

please help..............

regards,
ravi kumar

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default If function required

Quite a few things you've left undefined. You've talked about numbers in
A1, but not about text, nor about empty text strings.

You might change your formula from
=IF(A1," ","Unpaid") to
=IF(A1,"Paid","Unpaid") or to
=IF(ISNUMBER(A1),"Paid","Unpaid") or to
=IF(A1<"","Paid","Unpaid") or to
=IF(ISBLANK(A1),"Unpaid",IF(ISNUMBER(A1),"Paid","U ndefined")) or to
=IF(A1="","Unpaid",IF(ISNUMBER(A1),"Paid","Undefin ed")) or to ...
--
David Biddulph


"Ravi" wrote in message
...
Hi...........If A1 is blank then B1 is "Unpaid" if A1 has numbers then B1
is
"Paid"

i tried the below for "unpaid" and its ok and i need to add the "Paid"
also
in this formula
=IF(A1," ","Unpaid")

please help..............

regards,
ravi kumar



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default If function required

But please realise that Stew's suggestion looks for numbers greater than
zero (and would also pick up text values), rather than looking for any
number.
So abc would give Paid, but -27 would give a blank.

If you do want to use his logic, you can throw away some of the parentheses
and reduce
=IF(A1="",("Unpaid"),IF(A10,("Paid"),(""))) to
=IF(A1="","Unpaid",IF(A10,"Paid",""))
--
David Biddulph


"stew" wrote in message
...
=IF(A1="",("Unpaid"),IF(A10,("Paid"),("")))


"Ravi" wrote:

Hi...........If A1 is blank then B1 is "Unpaid" if A1 has numbers then B1
is
"Paid"

i tried the below for "unpaid" and its ok and i need to add the "Paid"
also
in this formula
=IF(A1," ","Unpaid")

please help..............

regards,
ravi kumar





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 293
Default If function required

NO PROBLEM. I HAVE BEEN HELPED SO MANY TIMES BY THIS GROUP,IT MAKES A CHANGE
FOR ME TO HELP SOMBODY

Stew

"Ravi" wrote:

thank U stew.........................

"stew" wrote:

=IF(A1="",("Unpaid"),IF(A10,("Paid"),("")))


"Ravi" wrote:

Hi...........If A1 is blank then B1 is "Unpaid" if A1 has numbers then B1 is
"Paid"

i tried the below for "unpaid" and its ok and i need to add the "Paid" also
in this formula
=IF(A1," ","Unpaid")

please help..............

regards,
ravi kumar

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Function required Padraig Excel Discussion (Misc queries) 1 November 6th 07 05:40 PM
If function with two results required Loretta Excel Worksheet Functions 2 April 20th 07 06:42 PM
add OR to already nested If function - help required N E Body Excel Worksheet Functions 3 November 12th 06 02:43 AM
Count Function help required KSteven Excel Worksheet Functions 1 February 10th 06 12:07 PM
Count function required mickbarry Excel Discussion (Misc queries) 2 February 10th 06 02:43 AM


All times are GMT +1. The time now is 09:59 PM.

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

About Us

"It's about Microsoft Excel"