Enumeration Data Type in Percentage

0
Hello Everyone,   I have an enumeration data type with open, closed, inProgress statuses. I am getting count of closed projects but I want to show this count in percentage. Is there any way to show the count in percentage? Thank you!
asked
1 answers
1

Hi Asad,

 

Create a list of all projects using a Microflow and a Retrieve action. Use the Aggregate list action with option count to get the number of all projects. Do the same but for projects with the status closed. The two numbers can be used to populate the Create variable action (type decimal). The variable can be set as return variable of the microflow.

 

Go Make It

answered