Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Help with Excel formula in a Workbook

Solograndma back with another complicated formula problem.
In my workbook I have a data entry sheet that transfers data to a printable
sheet. I have a copy and paste function with mid-range formulas for and
address as well as a manual entry area. I have the formula to use the pasted
information if it's there or the manually entered information if it is there.
What I need is for the cells in the printable page to be blank if both the
pasted and the manual entry areas are blank. Everything I have tried brings
back zeros and unfortunately this form nees to be able to be printed as a
blank form for hand written use. I truly appreciate any help available. This
message board has been great so far. Thanks.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,574
Default Help with Excel formula in a Workbook

To test for two cells being blank, do something like the following:
=IF(ISBLANK(A1:A2),"blank","not blank")

This is an array formula and needs to be entered with CTRL + SHIFT + ENTER

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"Solograndma" wrote:

Solograndma back with another complicated formula problem.
In my workbook I have a data entry sheet that transfers data to a printable
sheet. I have a copy and paste function with mid-range formulas for and
address as well as a manual entry area. I have the formula to use the pasted
information if it's there or the manually entered information if it is there.
What I need is for the cells in the printable page to be blank if both the
pasted and the manual entry areas are blank. Everything I have tried brings
back zeros and unfortunately this form nees to be able to be printed as a
blank form for hand written use. I truly appreciate any help available. This
message board has been great so far. Thanks.

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Help with Excel formula in a Workbook

Thanks Dave F, but this doesn't work with my current formula, which is:

=if('65-5300 Data Entry'!f40<"",'65-5300 Data Entry'!f40,if('65-5300 Data
Entry'!j40<" ",'65-5300 Data Entry'!j40))

From here I need it to say, however, if cells f40 and j40 in 65-5300 Data
Entry are both blank then this cell should be blank. It currently returns
"zeros".


"Dave F" wrote:

To test for two cells being blank, do something like the following:
=IF(ISBLANK(A1:A2),"blank","not blank")

This is an array formula and needs to be entered with CTRL + SHIFT + ENTER

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"Solograndma" wrote:

Solograndma back with another complicated formula problem.
In my workbook I have a data entry sheet that transfers data to a printable
sheet. I have a copy and paste function with mid-range formulas for and
address as well as a manual entry area. I have the formula to use the pasted
information if it's there or the manually entered information if it is there.
What I need is for the cells in the printable page to be blank if both the
pasted and the manual entry areas are blank. Everything I have tried brings
back zeros and unfortunately this form nees to be able to be printed as a
blank form for hand written use. I truly appreciate any help available. This
message board has been great so far. Thanks.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 623
Default Help with Excel formula in a Workbook

If you need to test for two separate cells to be blank, just do it with the AND
function, as in:

=if(and(a1="",b1=""),"both blank","at least one not blank")

Also, to test for both a blank and a space, use the Trim function, as in:

=if(trim(a1)="",true,false)

I don't know how your formula comes up with "zeros" unless you tell us what the
"zeros" are. Is it the actual text "zeros"? The number 0? More than one digit of
zeros? One possibility is that you don't define what should happen if your
second If statement is false.

--
Regards,
Fred


"Solograndma" wrote in message
...
Thanks Dave F, but this doesn't work with my current formula, which is:

=if('65-5300 Data Entry'!f40<"",'65-5300 Data Entry'!f40,if('65-5300 Data
Entry'!j40<" ",'65-5300 Data Entry'!j40))

From here I need it to say, however, if cells f40 and j40 in 65-5300 Data
Entry are both blank then this cell should be blank. It currently returns
"zeros".


"Dave F" wrote:

To test for two cells being blank, do something like the following:
=IF(ISBLANK(A1:A2),"blank","not blank")

This is an array formula and needs to be entered with CTRL + SHIFT + ENTER

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"Solograndma" wrote:

Solograndma back with another complicated formula problem.
In my workbook I have a data entry sheet that transfers data to a printable
sheet. I have a copy and paste function with mid-range formulas for and
address as well as a manual entry area. I have the formula to use the
pasted
information if it's there or the manually entered information if it is
there.
What I need is for the cells in the printable page to be blank if both the
pasted and the manual entry areas are blank. Everything I have tried brings
back zeros and unfortunately this form nees to be able to be printed as a
blank form for hand written use. I truly appreciate any help available.
This
message board has been great so far. Thanks.



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Help with Excel formula in a Workbook

The formula returns the data that is in each cell, but returns the number
zero when both of the targeted cells are blank. Based on the formula I
provided, should the formula's you provided be entered before or after what
is already there? Or in place of?

"Fred Smith" wrote:

If you need to test for two separate cells to be blank, just do it with the AND
function, as in:

=if(and(a1="",b1=""),"both blank","at least one not blank")

Also, to test for both a blank and a space, use the Trim function, as in:

=if(trim(a1)="",true,false)

I don't know how your formula comes up with "zeros" unless you tell us what the
"zeros" are. Is it the actual text "zeros"? The number 0? More than one digit of
zeros? One possibility is that you don't define what should happen if your
second If statement is false.

--
Regards,
Fred


"Solograndma" wrote in message
...
Thanks Dave F, but this doesn't work with my current formula, which is:

=if('65-5300 Data Entry'!f40<"",'65-5300 Data Entry'!f40,if('65-5300 Data
Entry'!j40<" ",'65-5300 Data Entry'!j40))

From here I need it to say, however, if cells f40 and j40 in 65-5300 Data
Entry are both blank then this cell should be blank. It currently returns
"zeros".


"Dave F" wrote:

To test for two cells being blank, do something like the following:
=IF(ISBLANK(A1:A2),"blank","not blank")

This is an array formula and needs to be entered with CTRL + SHIFT + ENTER

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"Solograndma" wrote:

Solograndma back with another complicated formula problem.
In my workbook I have a data entry sheet that transfers data to a printable
sheet. I have a copy and paste function with mid-range formulas for and
address as well as a manual entry area. I have the formula to use the
pasted
information if it's there or the manually entered information if it is
there.
What I need is for the cells in the printable page to be blank if both the
pasted and the manual entry areas are blank. Everything I have tried brings
back zeros and unfortunately this form nees to be able to be printed as a
blank form for hand written use. I truly appreciate any help available.
This
message board has been great so far. Thanks.






  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Help with Excel formula in a Workbook

Fot f40 you've tested for "" (a string of zero length), but for j40 you've
looked for " " ( a single space).

Also, you haven't told the formula what to do if the 2 conditions aren't
met; presumably you want ...!j40,"")) if you want to return a blank?
--
David Biddulph

"Solograndma" wrote in message
...
Thanks Dave F, but this doesn't work with my current formula, which is:

=if('65-5300 Data Entry'!f40<"",'65-5300 Data Entry'!f40,if('65-5300 Data
Entry'!j40<" ",'65-5300 Data Entry'!j40))

From here I need it to say, however, if cells f40 and j40 in 65-5300 Data
Entry are both blank then this cell should be blank. It currently returns
"zeros".


"Dave F" wrote:

To test for two cells being blank, do something like the following:
=IF(ISBLANK(A1:A2),"blank","not blank")

This is an array formula and needs to be entered with CTRL + SHIFT +
ENTER

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"Solograndma" wrote:

Solograndma back with another complicated formula problem.
In my workbook I have a data entry sheet that transfers data to a
printable
sheet. I have a copy and paste function with mid-range formulas for and
address as well as a manual entry area. I have the formula to use the
pasted
information if it's there or the manually entered information if it is
there.
What I need is for the cells in the printable page to be blank if both
the
pasted and the manual entry areas are blank. Everything I have tried
brings
back zeros and unfortunately this form nees to be able to be printed as
a
blank form for hand written use. I truly appreciate any help available.
This
message board has been great so far. Thanks.



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Help with Excel formula in a Workbook



"David Biddulph" wrote:

Fot f40 you've tested for "" (a string of zero length), but for j40 you've
looked for " " ( a single space).

Also, you haven't told the formula what to do if the 2 conditions aren't
met; presumably you want ...!j40,"")) if you want to return a blank?
--
David Biddulph

"Solograndma" wrote in message
...
Thanks Dave F, but this doesn't work with my current formula, which is:

=if('65-5300 Data Entry'!f40<"",'65-5300 Data Entry'!f40,if('65-5300 Data
Entry'!j40<" ",'65-5300 Data Entry'!j40))

From here I need it to say, however, if cells f40 and j40 in 65-5300 Data
Entry are both blank then this cell should be blank. It currently returns
"zeros".


"Dave F" wrote:

To test for two cells being blank, do something like the following:
=IF(ISBLANK(A1:A2),"blank","not blank")

This is an array formula and needs to be entered with CTRL + SHIFT +
ENTER

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"Solograndma" wrote:

Solograndma back with another complicated formula problem.
In my workbook I have a data entry sheet that transfers data to a
printable
sheet. I have a copy and paste function with mid-range formulas for and
address as well as a manual entry area. I have the formula to use the
pasted
information if it's there or the manually entered information if it is
there.
What I need is for the cells in the printable page to be blank if both
the
pasted and the manual entry areas are blank. Everything I have tried
brings
back zeros and unfortunately this form nees to be able to be printed as
a
blank form for hand written use. I truly appreciate any help available.
This
message board has been great so far. Thanks.




  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Help with Excel formula in a Workbook

I have tried f40 with " " along with j40 with " ", I have tried f40 with ""
along with j40 with "". Both return the number zero when the targeted cells
are blank. What I am asking is how do I tell the formula what to do if the 2
conditions are not met. That is the part I can't figure out. Believe me, I
have tried many many combinations and operands.

"David Biddulph" wrote:

Fot f40 you've tested for "" (a string of zero length), but for j40 you've
looked for " " ( a single space).

Also, you haven't told the formula what to do if the 2 conditions aren't
met; presumably you want ...!j40,"")) if you want to return a blank?
--
David Biddulph

"Solograndma" wrote in message
...
Thanks Dave F, but this doesn't work with my current formula, which is:

=if('65-5300 Data Entry'!f40<"",'65-5300 Data Entry'!f40,if('65-5300 Data
Entry'!j40<" ",'65-5300 Data Entry'!j40))

From here I need it to say, however, if cells f40 and j40 in 65-5300 Data
Entry are both blank then this cell should be blank. It currently returns
"zeros".


"Dave F" wrote:

To test for two cells being blank, do something like the following:
=IF(ISBLANK(A1:A2),"blank","not blank")

This is an array formula and needs to be entered with CTRL + SHIFT +
ENTER

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"Solograndma" wrote:

Solograndma back with another complicated formula problem.
In my workbook I have a data entry sheet that transfers data to a
printable
sheet. I have a copy and paste function with mid-range formulas for and
address as well as a manual entry area. I have the formula to use the
pasted
information if it's there or the manually entered information if it is
there.
What I need is for the cells in the printable page to be blank if both
the
pasted and the manual entry areas are blank. Everything I have tried
brings
back zeros and unfortunately this form nees to be able to be printed as
a
blank form for hand written use. I truly appreciate any help available.
This
message board has been great so far. Thanks.




  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Help with Excel formula in a Workbook

Okay, I had an epiphany, FINALLY. Your statement "presumably you want
....!j40,""))" is what worked. I was trying to put the ,"" in the wrong place.

Thank you for your help.

"David Biddulph" wrote:

Fot f40 you've tested for "" (a string of zero length), but for j40 you've
looked for " " ( a single space).

Also, you haven't told the formula what to do if the 2 conditions aren't
met; presumably you want ...!j40,"")) if you want to return a blank?
--
David Biddulph

"Solograndma" wrote in message
...
Thanks Dave F, but this doesn't work with my current formula, which is:

=if('65-5300 Data Entry'!f40<"",'65-5300 Data Entry'!f40,if('65-5300 Data
Entry'!j40<" ",'65-5300 Data Entry'!j40))

From here I need it to say, however, if cells f40 and j40 in 65-5300 Data
Entry are both blank then this cell should be blank. It currently returns
"zeros".


"Dave F" wrote:

To test for two cells being blank, do something like the following:
=IF(ISBLANK(A1:A2),"blank","not blank")

This is an array formula and needs to be entered with CTRL + SHIFT +
ENTER

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"Solograndma" wrote:

Solograndma back with another complicated formula problem.
In my workbook I have a data entry sheet that transfers data to a
printable
sheet. I have a copy and paste function with mid-range formulas for and
address as well as a manual entry area. I have the formula to use the
pasted
information if it's there or the manually entered information if it is
there.
What I need is for the cells in the printable page to be blank if both
the
pasted and the manual entry areas are blank. Everything I have tried
brings
back zeros and unfortunately this form nees to be able to be printed as
a
blank form for hand written use. I truly appreciate any help available.
This
message board has been great so far. Thanks.




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
Excel workbook is corrupted, workbook automatically saves on start Paul Gooda Excel Discussion (Misc queries) 3 September 28th 06 04:51 PM
using a name in an excel formula in a workbook Morris Excel Discussion (Misc queries) 3 April 27th 06 04:16 AM
Link A Cell In O ne Workbook To A Formula In Another Workbook Minitman Excel Worksheet Functions 0 November 4th 05 06:11 AM
link Access workbook to Excel workbook Toinett Excel Discussion (Misc queries) 1 January 31st 05 03:37 PM
can i make a formula to search keywords in a excel workbook? gorillayam Excel Worksheet Functions 0 January 15th 05 02:25 AM


All times are GMT +1. The time now is 08:59 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"