I am trying to create an item type that grabs the X,Y,Z coordinates of geometric points that I am using the "Import Horizontal Points from ASCII File" tool to import in. However, some of the points in my csv file don't have elevations. They just show as blank in the file. When these point are inputed in, the elevation property shows as " -nan(ind)' ". The item type (expression this.GetElement().PointEntity2d_Elevation) displays " NaN ", and when I run a report, that is also what appear.
Is there an item type that can identify if there's an error in the property, and display another value if there is? I've been trying to use an iif statement, but none of my attempts have worked. I've tried using a conditional statement to test if the elevation is greater than 0, but because it doesn't recognize the elevation as a number, it's not following that condition.