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
replace missing values by an expression of another attribute (another attribute divided by 0,17)
Best Answer
-
rjones13 Member Posts: 204 UnicornHi @HSan1971,
Simplest here is probably to use Generate Attributes. You can overwrite columns, so you would declare a column called "total day minutes", and the function would be:
if(missing([total day minutes]),[total day charge]/0.17,[total day minutes])
The if statement is used alongside the missing function to run the function if there's a missing value, else you state it should keep it's value.
Hope this works for you.
Best,
Roland1
Answers