Hi, i were wondering how i can copy a numbervalue from B4 in sheet called Dimensjonerende kriterier, and use this value to specify a starting point for a copy command
i'm using match formula in B4 to get the Y-reference to were that is, and going to copy in x-y position from that starting point

below is my VBA so far.
Sub Knapp19_Klikk()
With Worksheets("Dimensjonerende kriterier").Range("B4")
 
End With

Range("A2").Copy Worksheets("Ark2").Range("G5")

End Sub