The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
how to change upper case to lower case of one attribute in an example set
Best Answer
-
kayman Member Posts: 662 Unicornyour spreadsheet will be handled as data (flat file recordset) once loaded, so you can use the generate attributes operator for this.
Just create a 'new' instance of your attribute, if your upper case attribute is called att1 for instance, use the generate attributes like this :
attribute name : att1 (so just your old name)
function expressions : lower([att1])
This will 'replace' your old attribute with the new lower case format using the same name5