I have a problem to solve by vba, I find a code that does this task on the internet but I could not understand it, because I do not have the Excel file on which it is run. so my goal is to know the structure of the Excel file (sheets and columns), and especially I do not understand this part:
With Worksheets ("Output of PV")
.Range (.Range ("_ pv") ....
I say that _pv
is the name of a range, but I can not find in the code where is it defined?
My problem is with formula range ("_ pv")
, and range ("_ data")
With Worksheets("Sortie de PV")
.Range(.Range("_pv").Offset(0, 0), .Range("_pv").Offset(10000, 100)).Value = ""
EntWith