![]() |
||
[Back]
Calling the WoRMS webservice from Microsoft Excel 95/97/2000This tutorial assumes you are using any Microsoft Windows Operating System.Step 1: Install Microsoft SOAP Toolkit Download Microsoft's SOAP Toolkit 3.0 or here Step 2: Create a Visual Basic module using the Visual basic EditorLaunch Excel and open the Visual Basic Editor by going to the Tools menu.
To make sure the VB Editor knows that you have the SOAP Toolkit installed, select Tools->References.
Add this piece of code by choosing Insert->Module. Copy this code into your Excel VBA module
Option Explicit
'Excel VBA Function to call the AphiaNameService
Public Function getAphiaID(taxon As String) As Single
Dim objSClient As MSSOAPLib30.SoapClient30
Dim fResult As Single
Set objSClient = New SoapClient30
Call objSClient.mssoapinit(par_WSDLFile:="http://www.marinespecies.org/aphia.php?p=soap&wsdl=1")
fResult = objSClient.getAphiaID(taxon, True) 'Optional parameters need to be there in VBA
Set objSClient = Nothing
getAphiaID = fResult
End Function
Your screen should look something like this:
Close the VB Editor. Step 3: Using the function in Excel You can now use the function getAphiaID as you would any built-in Excel function.
The result should be something like this:
Download elaborate example for getAphiaRecordById. Download elaborate example for getAphiaClassificationByID. |
||