For the creation of a dashboard I need to find out the way to get the count of the items in a field of a list. How to get the same in real time?
Let’s say I have a list with the following fields;
Quarter >>>> Batch# >>>>>> In field/Packed/Shipped
For eg, if the entries for the first list is as given below;
Quarter >>>>>>>>>>>>>>>>> Batch# >>>>>>>>>>>>>>>>>>>>> Status
Q1 ------------------------------------B1------------------------------------ In the field
Q1 ------------------------------------B2 ------------------------------------In the field
Q1------------------------------------B1 ------------------------------------Packed
Q1------------------------------------B2 ----------------------------------- Shipped
Q1------------------------------------B2------------------------------------ Shipped
NOW, I need to get a dashboard list where in it give the below result;
It should look like;
Status >>>>>>>>>>>>>>>>> Batch 1 >>>>>>>>>>>>>>>>> Batch 2
In the field ------------------------1----------------------------------1
Packed ------------------------- 1-----------------------------------0
Shipped------------------------- 0----------------------------------2
Please help upon how to create a dashboard like the above.