Hi All, I have a collection
ClearCollect(colIAM1,Filter( EnvVar_IAM_ITAssetManagement,Index>0 && Index<=2000));
ClearCollect(colIAM2,Filter( EnvVar_IAM_ITAssetManagement,Index>2000 && Index<=4000));
ClearCollect(colIAM3,Filter( EnvVar_IAM_ITAssetManagement,Index>4000 && Index<=6000));
ClearCollect(colIAM4,Filter( EnvVar_IAM_ITAssetManagement,Index>6000 && Index<=8000));
ClearCollect(colIAM5,Filter( EnvVar_IAM_ITAssetManagement,Index>8000 && Index<=10000));
ClearCollect(colIAM,colIAM1,colIAM2,colIAM3,colIAM4,colIAM5);
Now, I need a count of the total number of rows in the collection
The collection has a variety of assets like desktop, laptop, ipad etc so i need :
1. total no. of assets
2. distinct assets - with its count
could anybody share the best practice on how i can do this