Breaking down a cell in a Table DAT

I’m reading in serial data (3 values from a 3 axis accelerometer) and it has been set up that the values appear in the one cell separated by a space

How might i be able to split them so that i can access each value separately?

You can use a Convert DAT and use the “Split Cells at” Parameter specifying a space.

Great thanks. I simultaneously found that - I wasn’t expecting that simply entering a space would work!

@spacessound - I like to switch the “Split Cells At” parameter to python expression mode and use ’ ’ to indicate that there’s a space character rather than just a space that can be mistaken for a blank entry. (single quote, space, single quote)

2 Likes