Jump to content

Getting the percentage of rows that equal a certain string over all rows


Cathal McConnell

Recommended Posts

One way to achieve this is to first create a calculated column to get the percentage for each string:

[Perc] =Count([status]) OVER ([status]) / Count([status])

And then get the percentage for "Overdue". So use this expression in your dynamic item:

First(If([status]="Overdue",[Perc]))

I also added this expression as a calculated column. But this is just to demonstrate to what it evaluates.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...