[Win 10]Bug regarding Cell[Table]row(1)col() in table

Report bugs. Post bug workarounds or fixes

Moderator: MSandro

Post Reply
Rowan Ramsey
Posts: 13
Joined: Sep 25th, '15, 22:43

[Win 10]Bug regarding Cell[Table]row(1)col() in table

Post by Rowan Ramsey » Dec 27th, '15, 20:34

Oliver and I found a bug regarding the Cell, Table row function.
When we clicked the it the program crashed, this is after we put values in and tried to change them. Dragging it crashed the program as well.
We managed to save it using the great "recover" option, we have atatched it if you would like to look at it
Attachments
recovered3.gpp
(3 KiB) Downloaded 262 times

JohnM
Posts: 379
Joined: Sep 11th, '15, 14:42

Re: [Win 10]Bug regarding Cell[Table]row(1)col() in table

Post by JohnM » Dec 28th, '15, 19:53

It's great that you were able to recover and share this project. Very helpful!

I see two problems with your code. First, if you wanted to read a table from
the file that was written, you need to use the "table from file" block rather than
the "read file" block. The latter reads the file as text; it doesn't know that you
intended that text to be a table.

The second problem is that the "find" works on lists objects, not tables,
although it was a reasonable guess to think that it might work on tables --
and maybe it should. What did you hope it would do?

Here is a revised version of your script that uses the "filtered" table block
to collect all the rows where the first column is equal to the value of "n"
and prints the resulting new table in the console.
Screen Shot 2015-12-28 at 2.53.28 PM.png

Post Reply