同じ理屈でVBA(Visal Basic for Applications)を使ったユーザー定義関数を作成すれば、ExcelでURLデコードも可能です。 ▼URLデコードするユーザー定義関数 Public Function URL_Decode(ByVal strOrg As String) As String With CreateObject("ScriptControl") .Language = "JScript" URL_Decode = .CodeObject.decodeURI(strOrg) End With End Function JScriptのdecodeURIメソッドを呼んでいるだけのユーザー定義関数です。 ご紹介すみのURLエンコードを行うユーザー定義関数の .CodeObject.encodeURI(strOrg) を .CodeObject.decodeUR