VBA code - print report of multiple sheets

secoo140

Board Regular
Joined
Oct 12, 2013
Messages
85
Office Version
  1. 2010
Platform
  1. Windows
Code:
Private Sub btnTedavi_Click()

Dim cikti As Worksheet, doz As Worksheet, kanlar As Worksheet, TutulumP As Worksheet
Set cikti = ThisWorkbook.Sheets("cikti")
Set doz = ThisWorkbook.Sheets("doz")
Set kanlar = ThisWorkbook.Sheets("kanlar")
Set TutulumP = ThisWorkbook.Sheets("Tutulum Paterni")


If doz.Cells(Rows.Count, 1).End(xlUp).Row = 1 Then
    dozLR = 2
Else
    dozLR = doz.Cells(Rows.Count, 1).End(xlUp).Row
End If


If kanlar.Cells(Rows.Count, 1).End(xlUp).Row = 1 Then
    kanlarLR = 2
Else
    kanlarLR = kanlar.Cells(Rows.Count, 1).End(xlUp).Row
End If






cikti.Range("a2:z" & dozLR).ClearContents
'son raporu silmeye yarar




Y = 2 'başlanacak sütun


For X = 2 To dozLR
     cikti.Cells(Y, 1) = doz.Cells(X, 1)
     cikti.Cells(Y, 2) = CDate(doz.Cells(X, 2))
     cikti.Cells(Y, 3) = doz.Cells(X, 3)
     cikti.Cells(Y, 4) = doz.Cells(X, 4)
     Y = Y + 1
     
Next X


Y = Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Select


For X = 2 To kanlarLR
    cikti.Cells(Y, 1) = kanlar.Cells(X, 1)
    cikti.Cells(Y, 2) = kanlar.Cells(X, 2)
    cikti.Cells(Y, 3) = kanlar.Cells(X, 3)
Next X


Application.ScreenUpdating = True
Worksheets("cikti").Select
Me.Hide




If PrintF.cbOnizle = True Then
    cikti.PrintPreview
End If




End Sub



there is 4 sheets with listed data, I want to create a report page and print it.

I can copy and print a page, but not multiple pages.

I want to copy all existing rows in an order.


thanks.
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
your requirement is not clear. you can try the following codes which summarizes all non-blank sheets into a summary sheet with corresponding sheet names in column A. Hope that helps.
Sub secoo140()
Dim a As Integer, x As Integer
Sheets.Add.Name = "summary"
For a = 1 To Sheets.Count
If Sheets(a).Cells(Rows.Count, 1).End(xlUp).Row > 1 Then
Sheets(a).UsedRange.Copy
x = Sheets("summary").Cells(Rows.Count, 2).End(xlUp).Row + 2
Sheets("summary").Range("A" & x - 1) = Sheets(a).Name
Sheets("summary").Range("B" & x).PasteSpecial
End If
Next a
MsgBox "complete"
End Sub
ravishankar
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,032
Messages
6,122,770
Members
449,095
Latest member
m_smith_solihull

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top