Extract data from .PDF

shahzeb123

Board Regular
Joined
Jul 29, 2021
Messages
61
Office Version
  1. 2016
Platform
  1. Windows
You guys have helped me alot as always and i am in immense pleasure of the creator of this forum.

THANK YOU !

Right now, i have a query in my project would like to ask you PROs that if you can help me or not.

I need exchange rate from website, however, this website does not have table so i cannot get data from power query.

State Bank of Pakistan

Above mentioned is the website, where u can see there is hyperlink for date wise exchange rate. When u click on the day the files open with .pdf

I have attached the picture of that file as well.

What i want is to extract the table or the whole pdf file data into excel, becasue i need exchange rate daily from this website.

I know its a hard ask, if it is not possible so be it. Otherwise, please HELP!!
 

Attachments

  • SBP.PNG
    SBP.PNG
    34.5 KB · Views: 565

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
The website you mention offers the possibility to download the PDF. Once the file has been downloaded, the contents can be copied to an Excel worksheet. My code uses MS Word for this. See if this is of any use to you.

VBA Code:
Public Sub shahzeb123()

    Dim InitialFolder As String, FullName As Variant, ShtPdfData As Worksheet
    Dim wdApp As Object, wdPdfDoc As Object, wdRange As Object

    InitialFolder = Environ("userprofile") & "\Downloads\"
    ChDrive Left(InitialFolder, 1)
    ChDir InitialFolder
    FullName = Application.GetOpenFilename("PDF Files (*.pdf), *.pdf", 1)

    If Not VarType(FullName) = vbBoolean Then

        Set wdApp = CreateObject("Word.Application")
        wdApp.Visible = True

        Set wdPdfDoc = wdApp.Documents.Open(Filename:=FullName, ConfirmConversions:=False, ReadOnly:=False, Format:=0, NoEncodingDialog:=True)
        Set wdRange = wdPdfDoc.Range(1)
        wdRange.WholeStory
        wdRange.Copy

        Set ShtPdfData = ThisWorkbook.Worksheets.Add
        ShtPdfData.PasteSpecial Format:="HTML", Link:=False, DisplayAsIcon:=False, NoHTMLFormatting:=True
        Application.Goto ShtPdfData.Range("A1")

        wdPdfDoc.Close False
        wdApp.DisplayAlerts = False
        wdApp.Quit

    Else
        'cancel was pressed
    End If
End Sub
 
Upvote 0
IT WORKS WONDERS! :))))

I really love your work, it is crazy to see that !!

Great Job Done Man.

However, i will now see what i can do with this as to if i need some of your help ill get back to you.
 
Upvote 0
You're welcome and thanks for the feedback.
 
Upvote 0
You're welcome and thanks for the feedback.
Does this code work for PDF files that have hundreds of pages of data? If not, would you be able to build a code that extracts a table on page 50 of "forexample.pdf" and then transfers it to an excel file?
 
Upvote 0
IT WORKS WONDERS! :))))

I really love your work, it is crazy to see that !!

Great Job Done Man.

However, i will now see what i can do with this as to if i need some of your help ill get back to you.
What did the output look like in excel for you?
 
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,538
Members
449,088
Latest member
RandomExceller01

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