Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
We are doing a time card and have this formula: =MAX(0,37.5-M8) when we
insert the formula in the cell and theres no hours for that pay period it shows 37.5 how can we hide the formula so the cell is blank. |
#2
![]() |
|||
|
|||
![]()
=IF(M8="","",MAX(0,37.5-M8)
-- Regards, Peo Sjoblom (No private emails please) "skateblade" wrote in message ... We are doing a time card and have this formula: =MAX(0,37.5-M8) when we insert the formula in the cell and theres no hours for that pay period it shows 37.5 how can we hide the formula so the cell is blank. |
#3
![]() |
|||
|
|||
![]()
Thanks, but it didn't work . Again, when we copy the cell down the sheet if
the others cells are blank, then the 37.5 apears until numbers are entered. Can the formula be "hidden" so cell is blank? "Peo Sjoblom" wrote: =IF(M8="","",MAX(0,37.5-M8) -- Regards, Peo Sjoblom (No private emails please) "skateblade" wrote in message ... We are doing a time card and have this formula: =MAX(0,37.5-M8) when we insert the formula in the cell and theres no hours for that pay period it shows 37.5 how can we hide the formula so the cell is blank. |
#4
![]() |
|||
|
|||
![]()
Where are the numbers entered, the only thing that changes in this formula
when copied down is the cell reference and if M8 is blank then my formula returns a blank, thus copied down it will change to M9, M910 and so on like =IF(M9="","",MAX(0,37.5-M9) so it should work How exactly does the formula look that you copy down, of course if it is not blank it will return the MAX part, blank means empty and not space or something -- Regards, Peo Sjoblom (No private emails please) "skateblade" wrote in message ... Thanks, but it didn't work . Again, when we copy the cell down the sheet if the others cells are blank, then the 37.5 apears until numbers are entered. Can the formula be "hidden" so cell is blank? "Peo Sjoblom" wrote: =IF(M8="","",MAX(0,37.5-M8) -- Regards, Peo Sjoblom (No private emails please) "skateblade" wrote in message ... We are doing a time card and have this formula: =MAX(0,37.5-M8) when we insert the formula in the cell and theres no hours for that pay period it shows 37.5 how can we hide the formula so the cell is blank. |
#5
![]() |
|||
|
|||
![]()
Thanks again, The M9 cell Contains this formula: =SUM(I13:L13) and there are
nothing in the I9:L9 rage of cells and when I try your formula it returns 37.5. Ineed the cell to be blank if if the answer to the formula is 37.5 "Peo Sjoblom" wrote: Where are the numbers entered, the only thing that changes in this formula when copied down is the cell reference and if M8 is blank then my formula returns a blank, thus copied down it will change to M9, M910 and so on like =IF(M9="","",MAX(0,37.5-M9) so it should work How exactly does the formula look that you copy down, of course if it is not blank it will return the MAX part, blank means empty and not space or something -- Regards, Peo Sjoblom (No private emails please) "skateblade" wrote in message ... Thanks, but it didn't work . Again, when we copy the cell down the sheet if the others cells are blank, then the 37.5 apears until numbers are entered. Can the formula be "hidden" so cell is blank? "Peo Sjoblom" wrote: =IF(M8="","",MAX(0,37.5-M8) -- Regards, Peo Sjoblom (No private emails please) "skateblade" wrote in message ... We are doing a time card and have this formula: =MAX(0,37.5-M8) when we insert the formula in the cell and theres no hours for that pay period it shows 37.5 how can we hide the formula so the cell is blank. |
#6
![]() |
|||
|
|||
![]()
Ok, that should be easy to fix, the reason is that the sum formula returns 0
=IF(M9=0,"",MAX(0,37.5-M9) that would work if the values in I13:L13 never are negative otherwise use =IF(COUNTBLANK(I13:L13)=4,"",MAX(0,37.5-M9)) -- Regards, Peo Sjoblom (No private emails please) "skateblade" wrote in message ... Thanks again, The M9 cell Contains this formula: =SUM(I13:L13) and there are nothing in the I9:L9 rage of cells and when I try your formula it returns 37.5. Ineed the cell to be blank if if the answer to the formula is 37.5 "Peo Sjoblom" wrote: Where are the numbers entered, the only thing that changes in this formula when copied down is the cell reference and if M8 is blank then my formula returns a blank, thus copied down it will change to M9, M910 and so on like =IF(M9="","",MAX(0,37.5-M9) so it should work How exactly does the formula look that you copy down, of course if it is not blank it will return the MAX part, blank means empty and not space or something -- Regards, Peo Sjoblom (No private emails please) "skateblade" wrote in message ... Thanks, but it didn't work . Again, when we copy the cell down the sheet if the others cells are blank, then the 37.5 apears until numbers are entered. Can the formula be "hidden" so cell is blank? "Peo Sjoblom" wrote: =IF(M8="","",MAX(0,37.5-M8) -- Regards, Peo Sjoblom (No private emails please) "skateblade" wrote in message ... We are doing a time card and have this formula: =MAX(0,37.5-M8) when we insert the formula in the cell and theres no hours for that pay period it shows 37.5 how can we hide the formula so the cell is blank. |
#7
![]() |
|||
|
|||
![]()
In the cell containing the formula you want to hide:-
Select Format Cells, Protection, click Hidden (leave locked ticked) Then:- Tools Protection, Protect Sheet (give a password if you want) Now the formula should be hidden |
#8
![]() |
|||
|
|||
![]()
On Sat, 15 Oct 2005 09:51:29 -0700, "skateblade"
wrote: We are doing a time card and have this formula: =MAX(0,37.5-M8) when we insert the formula in the cell and theres no hours for that pay period it shows 37.5 how can we hide the formula so the cell is blank. See answers in your other thread. Rgds __ Richard Buttrey Grappenhall, Cheshire, UK __________________________ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
dragging a formula | Excel Discussion (Misc queries) | |||
Hide Formula in Formulabar | Excel Discussion (Misc queries) | |||
Named SUM Formula with relative refernce(s) | Excel Worksheet Functions | |||
Match / Vlookup within an Array formula | Excel Discussion (Misc queries) | |||
Cell shows formula and not the result of the formula. | Excel Worksheet Functions |