Import Excel Data

I am getting an error while importing the excel into dynamo.

Kindly help me

Hello first of all,
here is a possibility assuming that all your imports are of the same level

cordially
christian.stan

1 Like

How is the structure of your excel?
Sugguest you to import X, Y, Z respectively from excel

1 Like

It looks like the issue is that your Excel data is a list of strings (i.e., text) that happen to be formatted to look exactly like a Dynamo point. So you either need to import the coordinates of the points like @newshunhk suggested and then create Dynamo points using Point.ByCoordinates, or do something like @christian.stan nicely showed to extract the coordinates from the text and then create the points from those numbers. Either way, you’ll need to do some string manipulation on the Excel side or the Dynamo side.

1 Like

thank you so much all of you.

1 Like