Hello everyone,
I am stuck at how to format this data so it will fill only if the dates match.
My code pulls in this text from the monitoring website as a string called UpStream and Downstream
"Current pool (EL): 301.42 (m) at 11/23/2016 21:20"
"Current tailwater (EL): 252.27 (m) at 11/23/2016 21:15
Here is the code for the string (not sure how to format on here)
[CODE]
Set allRowOfData = ie.document.getElementByid("pool")
Dim UpStream As String: UpStream = allRowOfData.innertext
Set allRowOfData = ie.document.getElementByid("tail")
Dim DownStream As String: DownStream = allRowOfData.innertext
[CODE]
My master sheet is set up by month and then each day is on the sheet in Row 8. I would like to have my VBA check if the date in Cell A8 is the same as in the string, if it is a match to place the Upstream in A6 and Downstream in A7 and if not, then to ignore it
Bookmarks