snasui.com ยินดีต้อนรับ ยินดีต้อนรับสู่กระดานถามตอบ Excel and VBA และอื่น ๆ ที่เป็นมิตรกับทุกท่าน มีไฟล์แนบมหาศาล ช่วยให้ท่านค้นหาและติดตามศึกษาได้โดยง่าย สมาชิกท่านใดที่ยังไม่ได้ระบุ Version ของ Excel ที่ใช้งานจริง สามารถทำตาม Link นี้เพื่อจะได้รับคำตอบที่ตรงกับ Version ของท่านครับ ระบุ Version ของ Excel
Private Sub CommandButton1_Click()
Dim rAll As Range, r As Range
Application.EnableEvents = False
With Worksheets("print")
Set rAll = .Range("b1", .Range("b" & Rows.Count).End(xlUp))
End With
For Each r In rAll
If r = "" Then
r.EntireRow.Hidden = True
End If
Next r
With Worksheets("print")
rAll.Resize(, 15).PrintOut
.UsedRange.EntireRow.Hidden = False
End With
Application.EnableEvents = True
End Sub
You do not have the required permissions to view the files attached to this post.
Private Sub CommandButton1_Click()
Dim rAll As Range, r As Range
Application.EnableEvents = False
With Worksheets("print")
Set rAll = .Range("b1", .Range("b" & Rows.Count).End(xlUp))
End With
For Each r In rAll
If r = "" Then
r.EntireRow.Hidden = True
End If
Next r
With Worksheets("print")
.PageSetup.PrintArea = .Range("b6").CurrentRegion.Address
' rAll.Resize(, 15).PrintOut
.PrintOut
.UsedRange.EntireRow.Hidden = False
End With
Application.EnableEvents = True
End Sub
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
Sheets("data").Visible = True
Sheets("data").Select
ActiveSheet.PageSetup.PrintArea = "$b$5:$h$32"
ActiveWindow.SelectedSheets.PrintOut copies:=1, collate:=True
Sheets("data").Visible = True
Application.ScreenUpdating = True
'Êèǹ·ÕèÊÑ駾ÔÁ¾ì Sheet print
Dim rAll As Range, r As Range
Application.EnableEvents = False
With Worksheets("print")
Set rAll = .Range("b1", .Range("b" & Rows.Count).End(xlUp))
End With
For Each r In rAll
If r = "" Then
r.EntireRow.Hidden = True
End If
Next r
With Worksheets("print")
.PageSetup.PrintArea = .Range("b3").CurrentRegion.Address
' rAll.Resize(, 15).PrintOut
.PrintOut
.UsedRange.EntireRow.Hidden = False
End With
Application.EnableEvents = True
End Sub
You do not have the required permissions to view the files attached to this post.