Forum Discussion
LauraThacker_ID
4 years agoQrew Trainee
Use a formula numeric field with variables for each of the fields you have a value in.
var number one=If([Field One] <>"",1,0);
var number two=If([Field Two] <>"",1,0);
var number three=If([Field Three] <>"",1,0);
var number total=Sum($one, $two, $three);
$total
Because this $total formula-value will be a per record-count; you will then need either to simply display a Table-Report with this column value totaling at the bottom; use a Summary Report and show this formula field to display the Total Count or you could try a gauge chart to count a single value.
To get a summary report to show one single row, you will need to use a field in your table that houses the same-value across all records; which you will probably need to build so it is the same across all records in your table. Do this with a simple formula-text field and put in a single text value that would make sense as a "Group By" value. Then your Summarize-value will be your numeric formula output.
A Pie may be achievable; but I would have to play with this to figure it out or not.
------------------------------
Laura Thacker IDS
------------------------------