#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Hiding Formulas

Looking for formula set up help. Current workbook I have for example,
information in cell A1 from sheet one formulated to sheet 2 for same cell as
='Sheet1'!A1+2 If no info is entered on sheet one in cell A1 the info on
sheet 2 for cell A1 just shows 2.00 as it should. What I want to be able to
do, is if nothing is entered on say Cell A1 of sheet one, that instead of
showing the 2.00 on sheet to it either shows a 0 or shows nothing at all.
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 694
Default Hiding Formulas

OOPS forgot the sheet name: =IF('Sheet1'!A1="","",'Sheet1'!A1+2) same formula.
Regards
John
"John" wrote in message
...
hi
Try it this way =IF(A1="","",A1+2) that will give you a blank cell, if you
want 0, change the "" for 0
HTH
John
"Looking for help today" <Looking for help
wrote in message ...
Looking for formula set up help. Current workbook I have for example,
information in cell A1 from sheet one formulated to sheet 2 for same cell as
='Sheet1'!A1+2 If no info is entered on sheet one in cell A1 the info on
sheet 2 for cell A1 just shows 2.00 as it should. What I want to be able to
do, is if nothing is entered on say Cell A1 of sheet one, that instead of
showing the 2.00 on sheet to it either shows a 0 or shows nothing at all.



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Hiding Formulas

This worked great. AWESOME! Did just what I needed and will save me about 30
minutes each day at work. Thanks for your help

"John" wrote:

OOPS forgot the sheet name: =IF('Sheet1'!A1="","",'Sheet1'!A1+2) same formula.
Regards
John
"John" wrote in message
...
hi
Try it this way =IF(A1="","",A1+2) that will give you a blank cell, if you
want 0, change the "" for 0
HTH
John
"Looking for help today" <Looking for help
wrote in message ...
Looking for formula set up help. Current workbook I have for example,
information in cell A1 from sheet one formulated to sheet 2 for same cell as
='Sheet1'!A1+2 If no info is entered on sheet one in cell A1 the info on
sheet 2 for cell A1 just shows 2.00 as it should. What I want to be able to
do, is if nothing is entered on say Cell A1 of sheet one, that instead of
showing the 2.00 on sheet to it either shows a 0 or shows nothing at all.




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 694
Default Hiding Formulas

You're welcome
John
"Looking for help today" wrote
in message ...
This worked great. AWESOME! Did just what I needed and will save me about 30
minutes each day at work. Thanks for your help

"John" wrote:

OOPS forgot the sheet name: =IF('Sheet1'!A1="","",'Sheet1'!A1+2) same
formula.
Regards
John
"John" wrote in message
...
hi
Try it this way =IF(A1="","",A1+2) that will give you a blank cell, if you
want 0, change the "" for 0
HTH
John
"Looking for help today" <Looking for help
wrote in message ...
Looking for formula set up help. Current workbook I have for example,
information in cell A1 from sheet one formulated to sheet 2 for same cell
as
='Sheet1'!A1+2 If no info is entered on sheet one in cell A1 the info on
sheet 2 for cell A1 just shows 2.00 as it should. What I want to be able
to
do, is if nothing is entered on say Cell A1 of sheet one, that instead of
showing the 2.00 on sheet to it either shows a 0 or shows nothing at all.






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 964
Default Hiding Formulas

Try this:

=IF('Sheet1'!A1="","",'Sheet1'!A1+2)

HTH
Elkar


"Looking for help today" wrote:

Looking for formula set up help. Current workbook I have for example,
information in cell A1 from sheet one formulated to sheet 2 for same cell as
='Sheet1'!A1+2 If no info is entered on sheet one in cell A1 the info on
sheet 2 for cell A1 just shows 2.00 as it should. What I want to be able to
do, is if nothing is entered on say Cell A1 of sheet one, that instead of
showing the 2.00 on sheet to it either shows a 0 or shows nothing at all.

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Hiding Formulas

Thanks for your help. This works great. I really appreciate it.

"Elkar" wrote:

Try this:

=IF('Sheet1'!A1="","",'Sheet1'!A1+2)

HTH
Elkar


"Looking for help today" wrote:

Looking for formula set up help. Current workbook I have for example,
information in cell A1 from sheet one formulated to sheet 2 for same cell as
='Sheet1'!A1+2 If no info is entered on sheet one in cell A1 the info on
sheet 2 for cell A1 just shows 2.00 as it should. What I want to be able to
do, is if nothing is entered on say Cell A1 of sheet one, that instead of
showing the 2.00 on sheet to it either shows a 0 or shows nothing at all.

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,393
Default Hiding Formulas

One of these should work for you
=IF(ISBLANK('Sheet1'!A1), "",'Sheet1'!A1+2)
=IF(ISBLANK('Sheet1'!A1), 0,'Sheet1'!A1+2)
=IF('Sheet1'!A1= "" , "",'Sheet1'!A1+2)
=IF('Sheet1'!A1= "" , 0,'Sheet1'!A1+2)
=('Sheet1'!A1< "")*('Sheet1'!A1+2)
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"Looking for help today" <Looking for help
wrote in message ...
Looking for formula set up help. Current workbook I have for example,
information in cell A1 from sheet one formulated to sheet 2 for same cell
as
='Sheet1'!A1+2 If no info is entered on sheet one in cell A1 the info on
sheet 2 for cell A1 just shows 2.00 as it should. What I want to be able
to
do, is if nothing is entered on say Cell A1 of sheet one, that instead of
showing the 2.00 on sheet to it either shows a 0 or shows nothing at all.



  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Hiding Formulas

Worked great. Thanks for your help. First time I ever used this site for help
and boy, will I be back again when I need to. Again, thank you.

"Bernard Liengme" wrote:

One of these should work for you
=IF(ISBLANK('Sheet1'!A1), "",'Sheet1'!A1+2)
=IF(ISBLANK('Sheet1'!A1), 0,'Sheet1'!A1+2)
=IF('Sheet1'!A1= "" , "",'Sheet1'!A1+2)
=IF('Sheet1'!A1= "" , 0,'Sheet1'!A1+2)
=('Sheet1'!A1< "")*('Sheet1'!A1+2)
--
Bernard V Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme
remove caps from email

"Looking for help today" <Looking for help
wrote in message ...
Looking for formula set up help. Current workbook I have for example,
information in cell A1 from sheet one formulated to sheet 2 for same cell
as
='Sheet1'!A1+2 If no info is entered on sheet one in cell A1 the info on
sheet 2 for cell A1 just shows 2.00 as it should. What I want to be able
to
do, is if nothing is entered on say Cell A1 of sheet one, that instead of
showing the 2.00 on sheet to it either shows a 0 or shows nothing at all.




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
Hiding formulas ps139 Excel Discussion (Misc queries) 3 July 29th 08 05:48 PM
HIDING FORMULAS zen Excel Discussion (Misc queries) 3 July 1st 08 09:25 PM
Hiding Formulas Wins07 Excel Discussion (Misc queries) 2 April 2nd 07 10:34 PM
Hiding Formulas EG Excel Worksheet Functions 3 November 15th 06 05:24 PM
Hiding formulas Donald Excel Discussion (Misc queries) 5 December 14th 05 10:32 PM


All times are GMT +1. The time now is 07:33 PM.

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"