Como posso resolver o erro de incompatibilidade de tipos que estou recebendo para o argumento que está sendo passado para o ExchangeRatesCalc (que deve ser uma string)?
Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Selection.Count = 1 Then
If Not Intersect(Target, Range("ExchangeRates[XRT]")) Is Nothing Then
Call ExchangeRatesCalc("ExchangeRates[Currency]")
End If
End If
End Sub
ExchangeRates é uma tabela formatada; XRT e Moeda são colunas na tabela. Quando clico em uma célula no XRT, quero passar a moeda correspondente para o ExchangeRatesCalc e fazer com que o resultado apareça no XRT.
Option Explicit
Function ExchangeRatesCalc(DestCur As String) As Variant
' Requires Microsoft WinHTTP Services reference
Dim url As String
' http://quote.yahoo.com/d/quotes.csv?s=XXXYYY=X&f=l1
url = "http://quote.yahoo.com/d/quotes.csv?s=USD" & DestCur & "=X&f=l1"
Dim myHTTP As New WinHttp.WinHttpRequest
myHTTP.Open "GET", url, False
myHTTP.send ""
If myHTTP.StatusText <> "OK" Then GoTo ServerErrorHandler
If Not (WorksheetFunction.IsNumber(myHTTP.responseText)) Then ExchangeRatesCalc = 0
' This is where the error occurs
ExchangeRatesCalc = CDbl(myHTTP.responseText)
Exit Function
ServerErrorHandler:
MsgBox "Error. Could not convert currency"
End Function
Tags microsoft-excel