Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Nek Nek is offline
external usenet poster
 
Posts: 3
Default display totals only over a certain amount

Hi:

I have a worksheet that totals colums for a daily payroll total for a
company. The 1st and 2nd colum need to be entered daily from a different
spreadsheet, the 3rd colum will already have an amount (salary amount) and
that colum is hidden and protected. However, I do not want the total to show
up if the user enters "0" in column 1 and 2 because they would be privy to
the salary amount - so is there a way in excel I can have the spreadsheet
only display a total if it is over a certain amount? This way the salary
would be protected and the amount would only show for example if it is over
$500.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 709
Default display totals only over a certain amount

If I understand it correctly if the total is in cell A2 try:

=IF(A2500,A2,"")
--
Richard


"Nek" wrote:

Hi:

I have a worksheet that totals colums for a daily payroll total for a
company. The 1st and 2nd colum need to be entered daily from a different
spreadsheet, the 3rd colum will already have an amount (salary amount) and
that colum is hidden and protected. However, I do not want the total to show
up if the user enters "0" in column 1 and 2 because they would be privy to
the salary amount - so is there a way in excel I can have the spreadsheet
only display a total if it is over a certain amount? This way the salary
would be protected and the amount would only show for example if it is over
$500.

  #3   Report Post  
Posted to microsoft.public.excel.misc
Nek Nek is offline
external usenet poster
 
Posts: 3
Default display totals only over a certain amount

Not sure if I understand, If I am adding A1-3 and the total is in A4 would I
place the =IF(A4500,A1,A2,A3)?

"Richard" wrote:

If I understand it correctly if the total is in cell A2 try:

=IF(A2500,A2,"")
--
Richard


"Nek" wrote:

Hi:

I have a worksheet that totals colums for a daily payroll total for a
company. The 1st and 2nd colum need to be entered daily from a different
spreadsheet, the 3rd colum will already have an amount (salary amount) and
that colum is hidden and protected. However, I do not want the total to show
up if the user enters "0" in column 1 and 2 because they would be privy to
the salary amount - so is there a way in excel I can have the spreadsheet
only display a total if it is over a certain amount? This way the salary
would be protected and the amount would only show for example if it is over
$500.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 709
Default display totals only over a certain amount

If the total is in cell A4 then try:

=if(A4500,A4,"")

You can hide and protect the formula in cell A4.
--
Richard


"Nek" wrote:

Not sure if I understand, If I am adding A1-3 and the total is in A4 would I
place the =IF(A4500,A1,A2,A3)?

"Richard" wrote:

If I understand it correctly if the total is in cell A2 try:

=IF(A2500,A2,"")
--
Richard


"Nek" wrote:

Hi:

I have a worksheet that totals colums for a daily payroll total for a
company. The 1st and 2nd colum need to be entered daily from a different
spreadsheet, the 3rd colum will already have an amount (salary amount) and
that colum is hidden and protected. However, I do not want the total to show
up if the user enters "0" in column 1 and 2 because they would be privy to
the salary amount - so is there a way in excel I can have the spreadsheet
only display a total if it is over a certain amount? This way the salary
would be protected and the amount would only show for example if it is over
$500.

  #5   Report Post  
Posted to microsoft.public.excel.misc
Nek Nek is offline
external usenet poster
 
Posts: 3
Default display totals only over a certain amount

Richard:

The calculation isn't working. A1 and B1 need to be entered with an amount
daily and C1 is the hidden column - the total is the addition of a+b+c but
only visable if over 500....

thanks for the help!

"Richard" wrote:

If the total is in cell A4 then try:

=if(A4500,A4,"")

You can hide and protect the formula in cell A4.
--
Richard


"Nek" wrote:

Not sure if I understand, If I am adding A1-3 and the total is in A4 would I
place the =IF(A4500,A1,A2,A3)?

"Richard" wrote:

If I understand it correctly if the total is in cell A2 try:

=IF(A2500,A2,"")
--
Richard


"Nek" wrote:

Hi:

I have a worksheet that totals colums for a daily payroll total for a
company. The 1st and 2nd colum need to be entered daily from a different
spreadsheet, the 3rd colum will already have an amount (salary amount) and
that colum is hidden and protected. However, I do not want the total to show
up if the user enters "0" in column 1 and 2 because they would be privy to
the salary amount - so is there a way in excel I can have the spreadsheet
only display a total if it is over a certain amount? This way the salary
would be protected and the amount would only show for example if it is over
$500.



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 709
Default display totals only over a certain amount

I'm sorry I didn't understand you're original problem. This formula should
work.

It does seem though one could figure out the value of C1 by doing some
simple math.

I only hope this helps.

Good luck.


=IF(SUM(A1:C1)500,SUM(A1:C1),"")
--
Richard


"Nek" wrote:

Richard:

The calculation isn't working. A1 and B1 need to be entered with an amount
daily and C1 is the hidden column - the total is the addition of a+b+c but
only visable if over 500....

thanks for the help!

"Richard" wrote:

If the total is in cell A4 then try:

=if(A4500,A4,"")

You can hide and protect the formula in cell A4.
--
Richard


"Nek" wrote:

Not sure if I understand, If I am adding A1-3 and the total is in A4 would I
place the =IF(A4500,A1,A2,A3)?

"Richard" wrote:

If I understand it correctly if the total is in cell A2 try:

=IF(A2500,A2,"")
--
Richard


"Nek" wrote:

Hi:

I have a worksheet that totals colums for a daily payroll total for a
company. The 1st and 2nd colum need to be entered daily from a different
spreadsheet, the 3rd colum will already have an amount (salary amount) and
that colum is hidden and protected. However, I do not want the total to show
up if the user enters "0" in column 1 and 2 because they would be privy to
the salary amount - so is there a way in excel I can have the spreadsheet
only display a total if it is over a certain amount? This way the salary
would be protected and the amount would only show for example if it is over
$500.

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
Highly Complex Totals of Data PaulW Excel Discussion (Misc queries) 5 December 28th 06 05:05 PM
Need help with custom sorting etronis Excel Discussion (Misc queries) 8 December 26th 06 07:24 PM
Formula needed to create grand totals Daniel LEYVA Excel Worksheet Functions 1 October 14th 06 09:18 AM
Amount Spent vs Budget Sean DeBruler Excel Discussion (Misc queries) 3 September 11th 06 09:31 AM
Filtering and Totals Paul Sheppard Excel Discussion (Misc queries) 2 March 2nd 06 05:48 PM


All times are GMT +1. The time now is 07:50 AM.

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"