Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11
Default Formula to return blank

I have a formula =IF(H2D2+E2,TODAY()), but I need to have it come back as a
blank if H2 is = to C2. Could someone please help with this?

Thanks
Debsdad
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Formula to return blank

Maybe

=IF(H2=C2,"",IF(H2D2+E2,TODAY(),""))


--
Regards,

Peo Sjoblom


"Debsdad" wrote in message
...
I have a formula =IF(H2D2+E2,TODAY()), but I need to have it come back as
a
blank if H2 is = to C2. Could someone please help with this?

Thanks
Debsdad



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11
Default Formula to return blank

Thanks, it worked great! Now that it returned a date I need to have the next
coloumn add days based on anoter cell so it would be like this: IF F2=date
then add formula from cell J2. Can this be done?

"Peo Sjoblom" wrote:

Maybe

=IF(H2=C2,"",IF(H2D2+E2,TODAY(),""))


--
Regards,

Peo Sjoblom


"Debsdad" wrote in message
...
I have a formula =IF(H2D2+E2,TODAY()), but I need to have it come back as
a
blank if H2 is = to C2. Could someone please help with this?

Thanks
Debsdad




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,202
Default Formula to return blank

Thanks, it worked great! Now that it returned a date I need to have the
next
coloumn add days based on anoter cell so it would be like this: IF F2=date
then add formula from cell J2. Can this be done?


What is in J2... a number of days? Maybe you want something like this...

=IF(F2<"",F2+J2,"")

where I only test for <"" because I assume the formula Peo and I posted is
what is in F2.

Rick

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11
Default Formula to return blank

You guys are awesome, Thanks for the help!

Debsdad

"Rick Rothstein (MVP - VB)" wrote:

Thanks, it worked great! Now that it returned a date I need to have the
next
coloumn add days based on anoter cell so it would be like this: IF F2=date
then add formula from cell J2. Can this be done?


What is in J2... a number of days? Maybe you want something like this...

=IF(F2<"",F2+J2,"")

where I only test for <"" because I assume the formula Peo and I posted is
what is in F2.

Rick




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 20
Default Formula to return blank

On Jul 3, 11:24 am, Debsdad wrote:
I have a formula =IF(H2D2+E2,TODAY()), but I need to have it come back as a
blank if H2 is = to C2. Could someone please help with this?

Thanks
Debsdad


=IF(H1=C1,"",IF(H1(D1+E1),TODAY()))

I think this could work for you. Try it, and let me know whether you
need more help.

Vincent

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,202
Default Formula to return blank

I have a formula =IF(H2D2+E2,TODAY()), but I need to have it come back as
a
blank if H2 is = to C2. Could someone please help with this?


Maybe this...

=IF(H2=C2,"",IF(H2D2+E2,TODAY(),""))

Note: I added a blank return value for your original formula if the logical
condition fails.

Rick

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,718
Default Formula to return blank

Try this:

=IF(OR(H2=C2,H2<D2+E2),"",TODAY())


"Debsdad" wrote:

I have a formula =IF(H2D2+E2,TODAY()), but I need to have it come back as a
blank if H2 is = to C2. Could someone please help with this?

Thanks
Debsdad

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
Index/match - make blank cells return a blank value. diaare Excel Worksheet Functions 3 May 3rd 23 03:44 AM
If cell blank return a blank Angela1979 Excel Worksheet Functions 8 March 7th 07 01:18 PM
Sumif to return a blank if sum range is blank [email protected] Excel Worksheet Functions 3 May 25th 06 10:25 AM
Formula ? Return value from rightmost non-blank cell in a row of tgdavis Excel Worksheet Functions 8 April 27th 06 01:00 PM
Return blank cell using a formula asach New Users to Excel 2 February 4th 05 05:19 PM


All times are GMT +1. The time now is 12:19 AM.

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

About Us

"It's about Microsoft Excel"