Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]() Hi all, Desperately need help on this....you'd think other people would have the same problem and it'd be easy to find, but all you get is hide and unhide column. This is too slow for me. For an Invoicing system i need to hide prices that the salesman can look at on screen, but not be shown when printed. If hiding and unhiding columns or changing fonts whenever an order is made, i'm sure mistakes will happen. So all i need is something that will hide or change the colour of certain cells or a column/s when the print button is clicked...simple.... ;¬) Any help much appreciated. please, please please and pretty please -- chris100 ------------------------------------------------------------------------ chris100's Profile: http://www.excelforum.com/member.php...o&userid=25166 View this thread: http://www.excelforum.com/showthread...hreadid=386633 |
#2
![]() |
|||
|
|||
![]()
Check out "Custom Views" in the Help files.
Sounds like that's just what you're looking for. Each view can have it's own, separate print range. plus hide columns and rows automatically as each view is invoked. -- HTH, RD ============================================== Please keep all correspondence within the Group, so all may benefit! ============================================== "chris100" wrote in message ... Hi all, Desperately need help on this....you'd think other people would have the same problem and it'd be easy to find, but all you get is hide and unhide column. This is too slow for me. For an Invoicing system i need to hide prices that the salesman can look at on screen, but not be shown when printed. If hiding and unhiding columns or changing fonts whenever an order is made, i'm sure mistakes will happen. So all i need is something that will hide or change the colour of certain cells or a column/s when the print button is clicked...simple.... ;¬) Any help much appreciated. please, please please and pretty please -- chris100 ------------------------------------------------------------------------ chris100's Profile: http://www.excelforum.com/member.php...o&userid=25166 View this thread: http://www.excelforum.com/showthread...hreadid=386633 |
#3
![]() |
|||
|
|||
![]()
Assuming that your secret columns are F & G, you've already set up your
print area and other print settings, and that you want to unhide after printing ... Put a button on the sheet labelled "Print" Assign the following macro to the button Sub HideAndPrint() Application.ScreenUpdating = False Columns("F:G").Hidden = True ActiveSheet.PrintOut Copies:=1 Columns("F:G").Hidden = False Application.ScreenUpdating = True End Sub Click the print button to print. Rgds, ScottO "chris100" wrote in message ... | | Hi all, | | Desperately need help on this....you'd think other people would have | the same problem and it'd be easy to find, but all you get is hide and | unhide column. This is too slow for me. | | For an Invoicing system i need to hide prices that the salesman can | look at on screen, but not be shown when printed. If hiding and | unhiding columns or changing fonts whenever an order is made, i'm sure | mistakes will happen. | | So all i need is something that will hide or change the colour of | certain cells or a column/s when the print button is | clicked...simple.... ;¬) | | Any help much appreciated. | | please, please please and pretty please | | | -- | chris100 | ------------------------------------------------------------------------ | chris100's Profile: http://www.excelforum.com/member.php...o&userid=25166 | View this thread: http://www.excelforum.com/showthread...hreadid=386633 | |
#4
![]() |
|||
|
|||
![]() Thanks for the help. I like ScottO's method a bit more. Just one question....considering that i'm not a programmer. How do you adapt the script when the columns are not next to each other. e,g "B" and "D" without covering "C". Thanks -- chris100 ------------------------------------------------------------------------ chris100's Profile: http://www.excelforum.com/member.php...o&userid=25166 View this thread: http://www.excelforum.com/showthread...hreadid=386633 |
#5
![]() |
|||
|
|||
![]() Separate them: Columns("B").Hidden = True Columns("D").Hidden = True Mangesh -- mangesh_yadav ------------------------------------------------------------------------ mangesh_yadav's Profile: http://www.excelforum.com/member.php...o&userid=10470 View this thread: http://www.excelforum.com/showthread...hreadid=386633 |
#6
![]() |
|||
|
|||
![]() Thanks very much ScottO, Ragdyer and Mangesh. The Macro works great - very handy for this type of thing. Chris -- chris100 ------------------------------------------------------------------------ chris100's Profile: http://www.excelforum.com/member.php...o&userid=25166 View this thread: http://www.excelforum.com/showthread...hreadid=386633 |
#7
![]() |
|||
|
|||
![]()
The one advantage "Custom Views" has over code,
For non-programmers like you and me ... revisions ... minor and/or major, are more easily attainable. -- Regards, RD -------------------------------------------------------------------- Please keep all correspondence within the Group, so all may benefit ! -------------------------------------------------------------------- "chris100" wrote in message ... Thanks very much ScottO, Ragdyer and Mangesh. The Macro works great - very handy for this type of thing. Chris -- chris100 ------------------------------------------------------------------------ chris100's Profile: http://www.excelforum.com/member.php...o&userid=25166 View this thread: http://www.excelforum.com/showthread...hreadid=386633 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to change the color of all series in an excel chart in one go. | Charts and Charting in Excel | |||
export access to excel. change access & update excel at same time | Excel Discussion (Misc queries) | |||
Moving Excel Charts into Word Documents: font sizes change | Charts and Charting in Excel | |||
Excel should allow me to change text color & font within tabs. | Excel Discussion (Misc queries) | |||
How to change the color of all series in an excel chart in one go. | Charts and Charting in Excel |