Announcement

Collapse
No announcement yet.

Filling percentage

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Filling percentage

    Hi, I wanted to ask if it is possible to somehow calculate how many fields are filled in on every record?

  • #2
    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;
    CEO & Founder of Eblasoft.
    Professional EspoCRM development & extensions.

    Comment


    • Nishan Perera
      Nishan Perera commented
      Editing a comment
      @eymen Good stuff.
Working...
X