Hi, I have a "master form" that consolidates about 35 answers given by users through different screens, I need to count the number of filled questions in my "master form" so that I can calculate a completion rate.
I tried creating a variable called Count_Fields_Filled and use it in the OnChange property of every field:
the datacardvalue589 is a dropdown list within my form.
If(
DataCardValue589.Selected.Value = Blank(),
Count_Fields_Filled + 1,
Count_Fields_Filled
)
Then I used the Count_Fields_Filled in a label, just show the total count but it shows 0 so it is not working.
How could I count if the field has a value selected by the user? I also tried with IsEmpty and IsBlank but still not working,
If(
IsEmpty(DataCardValue589.Selected.Value),
Count_Fields_Filled + 1,
Count_Fields_Filled
)