Showing posts with label Videos. Show all posts
Showing posts with label Videos. Show all posts

Tuesday, 15 December 2020

DTH STOCK MANAGEMENT SYSTEM IN EXCEL


Click here  and goto download page

Worksheet Password is sun123
VBA Project Password is 1212

Sunday, 4 October 2020

Monday, 31 August 2020

Friday, 12 June 2020

Save as PDF in Excel using VBA || Export As PDF from Excel || Excel to P...

                  VBA CODE
Sub saveaspdf()
Dim sh As Worksheet
Set sh = Sheets("Sheet1")
Dim myfile As String
myfile = "C:\New folder\" & sh.Range("D4") & ".pdf"
sh.Range("B3:J23").ExportAsFixedFormat xlTypePDF, myfile, , , , , , openafterpublish:=True
End Sub 

Click here to download this file..

Thursday, 11 June 2020