How to change and append matrix items of a globaly defined matrix via program?
I want to create a global result table with fixed columns. From anywhere behind the definition of that table I will insert new result lines or modify existing rows. For modification, the first column is a key column, so that the match-Function could give back the row number:

My problem is, that the ResultTable will not be changed. Also not if I write
ResultTable:=AddResult("key123","Cap1","that's a nice result",4.5)
Yes, I know that inside a program the assignments are local. How to make global?
Thank for help!

