Recently i created a program that involved Fortran and excel.  The main solving was handled by the Fortran and excel provided the GUI.

I know many people search for this so here’s the small example that i worked on before going to the main program.

I used gfortran as Fortran compiler and Excel 2003 for the GUI.

Fortran program accepts and array and does some calculation and returns the values back to excel.

The excel VBA code, call the Fortran dll and then the results form the dll call are posted in excel cells.

Here’s the Fortran program

        Subroutine FortranDLL( Array1, upbound )
        Implicit None
! …argument declarations
        Integer :: upbound
        Integer :: Array1(1:upbound)
! Local variables
        Integer :: i
        do i=1,upbound
        Array1(i)=288.16-0.0065*Array1(i)
        end do
        End Subroutine FortranDLL

It was compiled with the following options.

gfortran -mrtd -fno-underscoring -shared -o fortrandll.dll fortrandll.f90

And here’s what I did in the excel.

Declare Sub fortrandll Lib "C:\TEMP\fortrandll.dll" (ByRef Array1 As Double, ByRef upbound As Long)

Sub Button1_Click()
    Dim II As Long
    Dim test(10) As Double
    II = 11
    Call fortrandll(test(1), II)
    Range("a1").Value = test(1)
    Range("a2").Value = test(2)
    Range("a3").Value = test(3)
    Range("a4").Value = test(4)
    Range("a5").Value = test(5)
    Range("a6").Value = test(6)
    Range("a7").Value = test(7)
    Range("a8").Value = test(8)
    Range("a9").Value = test(9)
    Range("a10").Value = test(10)
End Sub

Will post more in coming weeks. Maybe a full fledged excel application using a fortran dll.

12 responses to “Fortran 90 with Excel – gfortran example”

  1. I think ARRAY1 should be declared double precision in the Fortran subroutine (not integer).
    Thanks for the example!

    Like

  2. […] How to create fortran DLL with gfortran open source compiler? Share this:ShareTwitterLinkedInFacebookEmailLike this:LikeBe the first to like this post. from → coding, excel, fortran, technical, vba ← April is the cruellest month and 3 hat-tricks No comments yet […]

    Like

  3. […] Fortran 90 with Excel – gfortran example […]

    Like

  4. […] Connecting Gfortran and ms excel via a fortran dll […]

    Like

  5. […] Fortran 90 with Excel – gfortran example is one of the post that constantly gets lot of attention as measured by the top posts sidebar widget on this blog. […]

    Like

  6. I like what you guys are usually up too. Such clever work and exposure!
    Keep up the fantastic works guys I’ve included you guys to my own blogroll.

    Like

  7. Oh my goodness! Amazing article dude! Thanks, However I am going
    through problems with your RSS. I don’t know why I cannot join it.

    Is there anybody getting similar RSS issues? Anyone that knows the answer will you kindly respond?

    Thanks!!

    Like

  8. I just got a error message saying ‘file can not be found’.

    Like

  9. Hi, I got error message too, the message is
    ‘453’ Runtime error occured.fortrandll’s could not find in C:\TEMP\FortanDLL.dll
    But i put into Fortrandll.dll in C:\TEMP
    My enviroment is Visual studio 2015 32bit, and Fortran Intel compiler 18.0 32 bit.
    Please reply my problem Thanks.

    Like

    1. Please check if the name is correct, there might be an issue of name mangling. Also you can check this link https://docs.google.com/present/view?id=dfp3wrf8_275mz3r6xgh&autoStart=true&loop=true for building fortran dll with intel fortran

      Like

      1. Thanks, it’s solved. and i have one more question, when i run this program, i confirmed value is 288.160003662109. is this correct ?? i put ‘1’ into a1 cell then 288.160003662109 get out. i don’t under stand when i checked equation, it’s incorrect value.

        Like

Leave a comment

Trending