Forum Discussion
Anonymous
8 years agoNot applicable
Calculate Column based on different Values
Hello Community, I have a simple table showing the status of either "open" or "closed" in a column labled "status". Is there a way to have a new column which calculates the % of open and/or clos...
- 8 years ago
Anonymous
Pls Try this
= DIVIDE ( CALCULATE ( COUNTROWS ( TableName ), TableName[Status] = "Open" ), COUNTROWS ( TableName ) )
Zubair_Muhammad
8 years agoCommunity Champion
Anonymous
Pls Try this
=
DIVIDE (
CALCULATE ( COUNTROWS ( TableName ), TableName[Status] = "Open" ),
COUNTROWS ( TableName )
)- Anonymous8 years agoNot applicable
Thank you Zubair_Muhammad!