I have a project list with multiple service lines, departments, included. I am trying to create a formula that will essentially flag each row with either yes or no, finding if the project listed in that row is in the 90th percentile, or top 10% of the highest budgeted projects in the list. Ideally I would like it to exclude any line that has a zero for the budget column, and I want to be able to use the specific row's assigned service line to calculate the percentile of all projects in that same service line, from the main list.
This is my current formula:
=IF(AND(([@TransBudget]>=0),([@[Project stage]]="Active"),([@TransBudget]>=PERCENTILE.INC(H:H,0.9))),"YES","NO")
but I am having trouble adding the condition of it looking at only other items in the master list that have the same service line listed as the row it is looking at.
Thanks!
This is my current formula:
=IF(AND(([@TransBudget]>=0),([@[Project stage]]="Active"),([@TransBudget]>=PERCENTILE.INC(H:H,0.9))),"YES","NO")
but I am having trouble adding the condition of it looking at only other items in the master list that have the same service line listed as the row it is looking at.
Thanks!