Hi, I would like to achieve the following:
I have a detail form, where I have numerous fields to be filled in. Not always all necessary data is available without further researching. So the records ar more or less incomplete. Any field, which cannot be filled in the first round will have 0 value in case of currency or numbers, integers and float, all other fields will either be empty or will have a value of "unknown".
The other fields are multi-enum, enum or text.
So I would like to have all field names displayed, which were not filled out in another entity, which has the only field a list array, where I want to push all the fields, which are empty.
As example, lets say I have a field "Update cycle" (an enum) in the main entity (entity1) with the value "unknown", I set the formula in the entity for missing Values as:
which means, if in entity1 the field value is "unknown", there should be pushed the value "Update Cycle" into the array (named: missing Values) in entity2.
So far this works for enum field, but not for text or integer, currency, multi-enum or float.
Any hint appreciated, thank you.
I have a detail form, where I have numerous fields to be filled in. Not always all necessary data is available without further researching. So the records ar more or less incomplete. Any field, which cannot be filled in the first round will have 0 value in case of currency or numbers, integers and float, all other fields will either be empty or will have a value of "unknown".
The other fields are multi-enum, enum or text.
So I would like to have all field names displayed, which were not filled out in another entity, which has the only field a list array, where I want to push all the fields, which are empty.
As example, lets say I have a field "Update cycle" (an enum) in the main entity (entity1) with the value "unknown", I set the formula in the entity for missing Values as:
Code:
ifThen( entity1.updatezyklus == 'unknown', missingValues = array\push(missingValues, 'Update Cycle');
So far this works for enum field, but not for text or integer, currency, multi-enum or float.
Any hint appreciated, thank you.
Comment