How to drag a formula down the table with changing the value while dragging?

I have a formula like this:

=@Dump(Connector("GoogleSearchConsole.SearchAnalytics";"https://www.example.com/";"2023-01-01";"2023-12-31";"page==A2";"web";FALSCH;0;"Clicks,Impressions,Ctr,Position";TRUE;3))

I want to drag the formula to the table's bottom, so the cell reference A2 changes its value while dragging to A3, A4 and so on.

I tried it with &A2& - but without success, A2 doesn't change to further values

Try:

=@Dump(Connector("GoogleSearchConsole.SearchAnalytics";"https://www.example.com/";"2023-01-01";"2023-12-31";"page==" & A2;"web";FALSCH;0;"Clicks,Impressions,Ctr,Position";TRUE;3))