Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have several rows of info but i would only like to print rows with a value
in a certain column. Any Ideas |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
See this page for a macro solution
http://www.rondebruin.nl/print.htm You can use this for example for column A in Sheet1 read the info on my site first Private Sub Workbook_BeforePrint(Cancel As Boolean) If ActiveSheet.Name = "Sheet1" Then Cancel = True Application.EnableEvents = False Application.ScreenUpdating = False With ActiveSheet On Error Resume Next .Columns("A").SpecialCells(xlCellTypeBlanks).Entir eRow.Hidden = True .PrintOut .Columns("A").SpecialCells(xlCellTypeBlanks).Entir eRow.Hidden = False On Error GoTo 0 End With Application.EnableEvents = True Application.ScreenUpdating = True End If End Sub -- Regards Ron de Bruin http://www.rondebruin.nl "Eric" wrote in message ... I have several rows of info but i would only like to print rows with a value in a certain column. Any Ideas |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"Eric" wrote in message
... I have several rows of info but i would only like to print rows with a value in a certain column. Any Ideas Autofilter -- David Biddulph |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
repeat a formula same column same number of rows apart | Excel Discussion (Misc queries) | |||
select rows to print where there's data in specific column | Excel Discussion (Misc queries) | |||
Need rows in Column A removed if they fully or partially match with any Column B row | Excel Discussion (Misc queries) | |||
match and count words | Excel Worksheet Functions | |||
moving alternating rows to a column with the order staying the sam | Excel Discussion (Misc queries) |