in reply to Re^4: Sorting by value??
in thread Sorting by value??
in your code : if ($frmType = "M729") And the other "if"'s like it will always be true because you are assigning not comparing.
And you cannot check strings using numerical test '==' , You'll have to use 'eq' instead. e.g: if ($frmType eq "M729")
|
|---|