Convert Date to Text in VBA Excel

Blackfirexray

New Member
Joined
Aug 14, 2017
Messages
4
Hi!

As a new member I've search thru the forum in the hunt for an answer to question, but no luck so far. There are som similar threads but none with a specific anser to my issue. I've created a workbook with a lot of soccerscores. At this point I'm forced to input the scores manually, but I'm aiming to have this automated. Tried to import tables from web with the function "From web" in the data menu. Worked quite ok until a certain game scores 1-1, and my Excelsheet turns it into "01-jan", and other dates as well, like "2-1" turns into "01-feb". Well, VBA seemed like a possible way, so I did that and it works fine importing the tables until the above mentioned issue arises, the outcome is the same.

Any advise on what to do? Preferrably I'd like to have it all fixed in VBA, but I'm thankful for any advise.
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
If the cell is text formatted it shouldnt happen. It depends on how the cell is filled. Other than that a single quote placed in front such as:

'2-1
 
Upvote 0
Thank you for your answer. I'm familiar with " '2-1 ", but unfortunately it aint helping me. I think that I need to convert "2-1" to text before importing it to Excel. As shown below inside the parenthesis is what I get from my VBA-code (in separate columns), but it should be as shown far right (2-3).

( 2 Chelsea2 - Burnley0 03-feb FT 2 87 - 10 - 3 ) 2-3
 
Upvote 0
It may be beter to share the VBA and if it isnt apparent the place where it gets its data.
 
Upvote 0
Okej, I use two Subroutines:

Sub BrowseToStryktipsetXML()


Dim XMLPage As New MSXML2.XMLHTTP60
Dim HTMLDoc As New MSHTML.HTMLDocument

XMLPage.Open "GET", "http://tipsrader.se//spel/stryktips", False
XMLPage.send

HTMLDoc.body.innerHTML = XMLPage.responseText


ProcessHTMLPage HTMLDoc

End Sub


And:

Sub ProcessHTMLPage(HTMLPage As MSHTML.HTMLDocument)


Dim HTMLTable As MSHTML.IHTMLElement
Dim HTMLTables As MSHTML.IHTMLElementCollection
Dim HTMLRow As MSHTML.IHTMLElement
Dim HTMLCell As MSHTML.IHTMLElement
Dim RowNum As Long, colnum As Integer
Set HTMLTables = HTMLPage.getElementsByTagName("table")

For Each HTMLTable In HTMLTables

Worksheets.Add
Range("A1").Value = HTMLTable.className
Range("B1").Value = Now

RowNum = 2
For Each HTMLRow In HTMLTable.getElementsByTagName("tr")
'Debug.Print vbTab & HTMLRow.innerText

colnum = 1

For Each HTMLCell In HTMLRow.Children
Cells(RowNum, colnum) = HTMLCell.innerText
colnum = colnum + 1

Next HTMLCell
RowNum = RowNum + 1
Next HTMLRow

Next HTMLTable

End Sub

The data comes from http://tipsrader.se/spel/stryktips

<colgroup><col><col><col span="4"></colgroup><tbody>
</tbody>

<colgroup><col><col><col span="4"></colgroup><tbody>
</tbody>
 
Upvote 0
This should work. Bear in mind all cells with be formatted now as text. After the line Worksheets.Add in ProcessHTMLPage put this:

Code:
Cells.NumberFormat = "@"
 
Upvote 0

Forum statistics

Threads
1,214,429
Messages
6,119,428
Members
448,896
Latest member
MadMarty

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