Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Need help with an Calculation result

Trying to do something along the lines of the following:

=SUM(H32,H50)/20

then have the result show up on another page.

This works fine. However, when I have no values in H32 or H50 the result is
obviously a zero(0).

My question is this: How can I make the result show up as blank on the
other page and not show as a zero(0)?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 492
Default Need help with an Calculation result

=IF(SUM(H32,H50)<0,SUM(H32,H50)/20,"")
Regards,
Alan.
"rapierguy" wrote in message
...
Trying to do something along the lines of the following:

=SUM(H32,H50)/20

then have the result show up on another page.

This works fine. However, when I have no values in H32 or H50 the result
is
obviously a zero(0).

My question is this: How can I make the result show up as blank on the
other page and not show as a zero(0)?


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Need help with an Calculation result

Try this:

=IF(H32+H50,(H32+H50)/20,"")

--
Biff
Microsoft Excel MVP


"rapierguy" wrote in message
...
Trying to do something along the lines of the following:

=SUM(H32,H50)/20

then have the result show up on another page.

This works fine. However, when I have no values in H32 or H50 the result
is
obviously a zero(0).

My question is this: How can I make the result show up as blank on the
other page and not show as a zero(0)?



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 703
Default Need help with an Calculation result

Hi

=IF(AND(ISBLANK(H32),ISBLANK(H50)),"",SUM(H32,H50)/20)

Regards,
Per

On 12 Apr., 03:33, rapierguy
wrote:
Trying to do something along the lines of the following:

=SUM(H32,H50)/20

then have the result show up on another page.

This works fine. *However, when I have no values in H32 or H50 the result is
obviously a zero(0).

My question is this: *How can I make the result show up as blank on the
other page and not show as a zero(0)?


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Need help with an Calculation result

Alan, T. Valko and Per Jessen,

I tried all your solutions but I get a "#NAME?" error. Any ideas?

"Per Jessen" wrote:

Hi

=IF(AND(ISBLANK(H32),ISBLANK(H50)),"",SUM(H32,H50)/20)

Regards,
Per

On 12 Apr., 03:33, rapierguy
wrote:
Trying to do something along the lines of the following:

=SUM(H32,H50)/20

then have the result show up on another page.

This works fine. However, when I have no values in H32 or H50 the result is
obviously a zero(0).

My question is this: How can I make the result show up as blank on the
other page and not show as a zero(0)?





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Need help with an Calculation result

Post the *exact* formula that is giving you that error.

--
Biff
Microsoft Excel MVP


"rapierguy" wrote in message
...
Alan, T. Valko and Per Jessen,

I tried all your solutions but I get a "#NAME?" error. Any ideas?

"Per Jessen" wrote:

Hi

=IF(AND(ISBLANK(H32),ISBLANK(H50)),"",SUM(H32,H50)/20)

Regards,
Per

On 12 Apr., 03:33, rapierguy
wrote:
Trying to do something along the lines of the following:

=SUM(H32,H50)/20

then have the result show up on another page.

This works fine. However, when I have no values in H32 or H50 the
result is
obviously a zero(0).

My question is this: How can I make the result show up as blank on the
other page and not show as a zero(0)?





  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3
Default Need help with an Calculation result

Not sure what I did, but I managed to figure it out.
What I wound up doing was this:

=SUM(H32,H50)/20

I then placed the result in a cell and called the cell "Academic" (minus the
quotes)

Then on another page I did the following

=IF((Academic=0),"",(Academic))

And now I have a blank in the cell I wanted.


"T. Valko" wrote:

Post the *exact* formula that is giving you that error.

--
Biff
Microsoft Excel MVP


"rapierguy" wrote in message
...
Alan, T. Valko and Per Jessen,

I tried all your solutions but I get a "#NAME?" error. Any ideas?

"Per Jessen" wrote:

Hi

=IF(AND(ISBLANK(H32),ISBLANK(H50)),"",SUM(H32,H50)/20)

Regards,
Per

On 12 Apr., 03:33, rapierguy
wrote:
Trying to do something along the lines of the following:

=SUM(H32,H50)/20

then have the result show up on another page.

This works fine. However, when I have no values in H32 or H50 the
result is
obviously a zero(0).

My question is this: How can I make the result show up as blank on the
other page and not show as a zero(0)?





  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default Need help with an Calculation result

Ok, glad to see you got it working.

=IF((Academic=0),"",(Academic))


You don't need the extra ( ):

=IF(Academic=0,"",Academic)

--
Biff
Microsoft Excel MVP


"rapierguy" wrote in message
...
Not sure what I did, but I managed to figure it out.
What I wound up doing was this:

=SUM(H32,H50)/20

I then placed the result in a cell and called the cell "Academic" (minus
the
quotes)

Then on another page I did the following

=IF((Academic=0),"",(Academic))

And now I have a blank in the cell I wanted.


"T. Valko" wrote:

Post the *exact* formula that is giving you that error.

--
Biff
Microsoft Excel MVP


"rapierguy" wrote in message
...
Alan, T. Valko and Per Jessen,

I tried all your solutions but I get a "#NAME?" error. Any ideas?

"Per Jessen" wrote:

Hi

=IF(AND(ISBLANK(H32),ISBLANK(H50)),"",SUM(H32,H50)/20)

Regards,
Per

On 12 Apr., 03:33, rapierguy
wrote:
Trying to do something along the lines of the following:

=SUM(H32,H50)/20

then have the result show up on another page.

This works fine. However, when I have no values in H32 or H50 the
result is
obviously a zero(0).

My question is this: How can I make the result show up as blank on
the
other page and not show as a zero(0)?







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
ROUNDING RESULT OF CALCULATION UP OR DOWN dartanion Excel Discussion (Misc queries) 15 January 25th 08 02:28 AM
Calculation using result from Index/Match diaare Excel Worksheet Functions 10 October 16th 07 01:10 AM
How can I add a + sign to a positive result of a calculation? PeterP9009 Excel Discussion (Misc queries) 1 June 9th 06 01:04 PM
How do I use a rounded calculation result in another calculation? vnsrod2000 Excel Worksheet Functions 1 January 26th 05 10:11 PM
How do I use a rounded calculation result in another calculation? vnsrod2000 Excel Worksheet Functions 1 January 26th 05 09:36 PM


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