Hey I would like to know if there is a way to create a summary per record instead of per filed? like, how may empty per record? Many thanks!!

Hey I would like to know if there is a way to create a summary per record instead of per filed? like, how may empty per record? Many thanks!!

Best answer by Ben_Young1
Hey Ben! thanks for your reply
An example of my questions is, if I have a record (field 1(filled), field 2(empty), field 3 (filled), field 4(filled), field 5(filled)), how to create field 6 to calculate the percent filled of this singe record (filed 1-5) which is 80%? 🙂
with the formula, I'm not sure how to best compose the code, which I am looking for help as well
Okay, so from what you're describing, I'm imagining something like this:

Here's the formula I used:
IF(
OR(
{Field 1}, {Field 2}, {Field 3}, {Field 4}, {Field 5}
),
SUM({Field 1}, {Field 2}, {Field 3}, {Field 4}, {Field 5}) / 5,
0
)Naturally, if you decide to add additional fields later on, you'll need to update the divisor in the equation.
Additionally, the 0 in the falsy parameter for the IF() function is optional.
If you want the formula to return nothing if the fields are all blank, then you can omit the 0.
If you always want a value to be returned, in this case a 0%, then you can just leave it in.
Be sure to confirm that your formula formatting is correctly configured.

Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.