in reply to How i can set the minimum value of a row 1?

What is your problem? Which modules are you using? Several have a row_range() method. Please read and understand How do I post a question effectively?. These methods tend to return the minimum and maximum defined rows in a worksheet. You can set $row_min to whatever you want, e.g. $row_min = 1;, but depending on what exactly you're trying to do this may not do what you think it does.

Replies are listed 'Best First'.
Re^2: How i can set the minimum value of a row 1?
by chandantul (Scribe) on Feb 16, 2021 at 18:30 UTC

    Have fixed the issue by declaring "my row_min = 1" as global valriable

      Make sure you are using strict. The 'vars' option of strict would have caught that the variable wasn't in scope.


      Dave