I am trying to copy a table of default model input parameters (fromTable) over to another table (toTable). Some of the fromTable values are FlexScript distributions (for example - normal(2.5,05) ). I tried to use Table("toTable") [x][y] = Table("fromTable") [x][y] for each cell but it ends up putting a numeric value in the toTable (a random draw from the distribution). I want the FlexScript code in the toTable. I also tried the cloneTo function. It does the same thing. The toTable was formatted the same as the fromTable (the cells with distributions were set to be flexScript cells).