How to Add text next to the HTTP Status

Avinesh

New Member
Joined
Jun 9, 2022
Messages
5
Office Version
  1. 365
Platform
  1. Windows
I am completely new to VBA and I was recently using to get HTTP status for the website using the following code

VBA Code:
Public Function CheckURL(url As String)
    Dim request As Object
    Set request = CreateObject("Winhttp.WinhttpRequest.5.1")
    On Error GoTo haveError
    With request
    .Open "HEAD", url
    .Send
    CheckURL = .Status
    End With
    Exit Function
haveError:
    CheckURL = Err.Description
    End Function

It just gives the message as 404 or 200. There is no details in it. I would like to add a small text like 200 Working and 404 Error like this. Can some help me with this. Please......
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Try . . .

VBA Code:
Public Function CheckURL(url As String)
    Dim request As Object
    Set request = CreateObject("Winhttp.WinhttpRequest.5.1")
    On Error GoTo haveError
    With request
    .Open "HEAD", url
    .Send
    CheckURL = .Status & ": " & .statustext
    End With
    Exit Function
haveError:
    CheckURL = Err.Number & ": " & Err.Description
    End Function

Hope this helps!
 
Upvote 0
Solution
Thank
Try . . .

VBA Code:
Public Function CheckURL(url As String)
    Dim request As Object
    Set request = CreateObject("Winhttp.WinhttpRequest.5.1")
    On Error GoTo haveError
    With request
    .Open "HEAD", url
    .Send
    CheckURL = .Status & ": " & .statustext
    End With
    Exit Function
haveError:
    CheckURL = Err.Number & ": " & Err.Description
    End Function

Hope this helps!
Thank you so much that was very helpful!!!
 
Upvote 0

Forum statistics

Threads
1,215,646
Messages
6,126,004
Members
449,279
Latest member
Faraz5023

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top