Hi, I wanted to ask if it is possible to somehow calculate how many fields are filled in on every record?
Announcement
Collapse
No announcement yet.
Filling percentage
Collapse
X
-
Hi Mark,
this is possible using the formula, just add a new field from float type and calculate it.
HTML Code:$filledPrecentage = 0; ifThen(fieldName1, $filledPrecentage = $filledPrecentage + 30 ); ifThen(fieldName2, $filledPrecentage = $filledPrecentage + 30 ); ifThen(fieldName3, $filledPrecentage = $filledPrecentage + 40 ); filledPrecentage = $filledPrecentage;
- Likes 3
Comment