![]() |
||
[Back]
Calling the WoRMS webservice from Microsoft Excel 2007This tutorial assumes you are using any Microsoft Windows Operating System with Office 2007 installedStep 1: Install the Microsoft Office XP Web Services Toolkit 2.0 Download Microsoft Office XP Web Services Toolkit 2.0 Step 2: Enable the developer tab in Excel Start Excel, click on the Office button, choose "Popular" and check "Show Developer tab in the Ribbon".
Step 3: Lauch the Web Service References Tool Open Visual Basic by going to the first option on the developer tab on the Ribbon.
Step 4: Generate the VBA code Select the checkbox Web Service URL and enter this value: http://www.marinespecies.org/aphia.php?p=soap&wsdl=1
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 aphia As New clsws_AphiaNameService getAphiaID = aphia.wsm_getAphiaID(taxon, True) End FunctionYour 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 this example. Download elaborate example for getAphiaRecordById. Download elaborate checklist example that uses getAphiaID/getAphiaRecordByID/getAphiaVernacularsByID. Credits for this tutorial go to Simon St.Laurent (Oreilly) and Christopher Condit (San Diego Supercomputer Center). |
||