Exporting data correctly in excel

Good morning,

I’m trying to export the displacements of a surface to excel, in order to make some calculation.
I created a node set of the surface, and the reuslts are displayed in a ‘’.dat’’ file. But, if I copy and paste these values in excel, they are all on the same cell.
Then, I tried, by using results → history outputs → create; so, I selected ‘‘ALL’’ (because I need the total value, not the components) and then selected the surface. But I get only 100 nodes, I need all the nodes in the surface selected. If I use that second method, the values are stored correctly in excel, but I need all the node values.
Is there a way to get what I need?

Thank you.

In Excel you can set some data import options including custom separators. If you do it properly, the outputs should be placed in individual cells.

I tried, it worked, but all the -1,8E-02 are transformed in -1,8E+02

That’s strange. Maybe try finding and replacing all occurances of E-02 with e.g. 10^-2.

But I have around thousands of rows, is there a fast way for doing it?

In both Excel and text editors (including Notepad) there is a Search and Replace tool that can do this for all entries.

1 Like

I tried but doesn’t work with the ‘‘E+’’ of numbers

¿Don’t you mean -1.8E-02 are transformed in -1,8E+02?. Notice the point and coma difference.

*.Dat files use “.” and your Excel might be using Commas as decimal separator.

In Excel you need to use “split into columns”.

You’re right, I didn’t notice it, now it works because I set ‘’.‘’ into ‘’,‘’ in the conversion window.

Thank you a lot.