Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is it possible to type one thing into a cell and have Excel print something
else when the form is printed? For example I have a time sheet, that calculates hours worked, takes off breaks (thanks for the help on that one) etc, for this reason I need to type in the actual hours, I would prefer it though if Excel could substitute anything after 22:00 for the word 'close' without disrupting any of the formulas used. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could insert an extra column which takes values from the column you
have at present (but if cell_value 22:00 then "close") and hide the original column when you print the sheet. Hope this helps. Pete |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How would I express that as a formula?
"Pete_UK" wrote: You could insert an extra column which takes values from the column you have at present (but if cell_value 22:00 then "close") and hide the original column when you print the sheet. Hope this helps. Pete |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assume your values are in column F, then insert a new column G and
enter this formula in G2: =IF(F222:00:00,"Close",F2) Then copy this down. Put the same heading in G1 as you have in F1, then you can hide column F - the rest of the worksheet will still access the values in column F and so will be unaffected, but your time column will now contain the word "Close" for any times after 10pm. Hope this helps. Pete |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
That formula keeps returning an error
"Pete_UK" wrote: Assume your values are in column F, then insert a new column G and enter this formula in G2: =IF(F222:00:00,"Close",F2) Then copy this down. Put the same heading in G1 as you have in F1, then you can hide column F - the rest of the worksheet will still access the values in column F and so will be unaffected, but your time column will now contain the word "Close" for any times after 10pm. Hope this helps. Pete |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Ok, here's an amendment which does work:
=IF(F2VALUE("22:00:00"),"Close",F2) Format the cell as time with 13:30:55. Hope this helps now. Pete |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I'm alsoworking on a speadsheet to do billing for a small business. I'm
looking for a simple way to print only the bills that have activity. I would like to print only pages of the workbook that have data in them. Is the a print function that works like an if statement that sets print range automatically ??? "bamboozled" wrote: Is it possible to type one thing into a cell and have Excel print something else when the form is printed? For example I have a time sheet, that calculates hours worked, takes off breaks (thanks for the help on that one) etc, for this reason I need to type in the actual hours, I would prefer it though if Excel could substitute anything after 22:00 for the word 'close' without disrupting any of the formulas used. |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Can you use Autofilter to display just the ranges that have data?
You could print the results of that filter. Gord Dibben MS Excel MVP On Tue, 3 Mar 2009 07:44:02 -0800, tev-cal wrote: I'm alsoworking on a speadsheet to do billing for a small business. I'm looking for a simple way to print only the bills that have activity. I would like to print only pages of the workbook that have data in them. Is the a print function that works like an if statement that sets print range automatically ??? "bamboozled" wrote: Is it possible to type one thing into a cell and have Excel print something else when the form is printed? For example I have a time sheet, that calculates hours worked, takes off breaks (thanks for the help on that one) etc, for this reason I need to type in the actual hours, I would prefer it though if Excel could substitute anything after 22:00 for the word 'close' without disrupting any of the formulas used. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Printing in Excel overlaps previous text | Excel Discussion (Misc queries) | |||
How to change default printing parameters on Excel & ...... | Excel Discussion (Misc queries) | |||
Printing Recto/Verso | Excel Discussion (Misc queries) | |||
problem printing to PDF | Excel Discussion (Misc queries) | |||
Enable Double sided printing contiuously when printing multiple s. | Excel Discussion (Misc queries) |