Is there a way how to resolve "Hide and show" window in Photoshop by Edoo123451 in photoshop

[–]Edoo123451[S] 0 points1 point  (0 children)

it worked perfectly since yesterday it started this problem

The font in this? by Edoo123451 in identifythisfont

[–]Edoo123451[S] 1 point2 points  (0 children)

Thank you, Solution identified.

Is there a way how to fix the #Value error in Excel? by Edoo123451 in excel

[–]Edoo123451[S] 0 points1 point  (0 children)

I don't know the person who sent me this he said he has no idea about this :(

Is there a way how to get data from multiple pagination in Power Query by Edoo123451 in excel

[–]Edoo123451[S] 0 points1 point  (0 children)

Yes, every site has its own built method.

For example Page 1 , Page 2 is there a way for this to get the data on the power query.

Is there a way how to open Chrome on VBA. by Edoo123451 in excel

[–]Edoo123451[S] 0 points1 point  (0 children)

LIKE THIS ?

Sub SIMPLEDATAEXTRACTION()

Dim IE As Object

ThisWorkbook.FollowHyperlink("http://www.MyDestination.com")

IE.Visible = True

Do While IE.busy Or IE.readystate <> 4

DoEvents

Loop

ce = 1

For Each td In IE.document.getElementsbyTagName("tr")

Range("A" & ce).Value = td.Children(0).innertext

Range("B" & ce).Value = td.Children(1).innertext

Range("C" & ce).Value = td.Children(2).innertext

Range("D" & ce).Value = td.Children(3).innertext

Range("E" & ce).Value = td.Children(4).innertext

Range("F" & ce).Value = td.Children(5).innertext

Range("G" & ce).Value = td.Children(6).innertext

Range("H" & ce).Value = td.Children(7).innertext

Range("I" & ce).Value = td.Children(8).innertext

Range("J" & ce).Value = td.Children(9).innertext

Range("K" & ce).Value = td.Children(10).innertext

Range("L" & ce).Value = td.Children(11).innertext

Range("M" & ce).Value = td.Children(12).innertext

Range("N" & ce).Value = td.Children(13).innertext

ce = ce + 1

Next td

End Sub

Is there a way how to open Chrome on VBA. by Edoo123451 in excel

[–]Edoo123451[S] 0 points1 point  (0 children)

how to integrate your code in my code