Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
lilySixteen
Helper III
Helper III

rate calculation formula

Hello,

 

I have a tenant table to show tenant data for every shopping center. Every shopping center has a # of units that can be rented to tenants. In the "tenant name" column it contains value "Vacant" if the unit is not rented to any tenant. The vacancy rate is calculated by taking the number of vacant units, multiplying that number by 100, and dividing that result by the total number of units. My question is what's the formula to calculate it in Power BI? 

Thanks so much!

 

Lili

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@lilySixteen , Something like this 

divide(calculate(countrows(Table), filter(Table,Table[tenant name]="Vacant")),countrows(Table))

 

No need multiple by 100, Mark as % column

Data Format New Rib.png

View solution in original post

4 REPLIES 4
nvprasad
Solution Sage
Solution Sage

Hi,

 

Try below formula

 

Vacancyrate =
DIVIDE (
CALCULATE ( COUNTROWS ( tablename ), tablename[tenant name] = "Vacant" ) * 100,
COUNTROWS ( ALL ( tablename ) ),
0
)

 

Thank You,

Venkata Nalla

@nvprasad Thank you for helping me. Your answer is correct when calculating the total but not when calculate by shopping center. Thanks again for providing your answer!

amitchandak
Super User
Super User

@lilySixteen , Something like this 

divide(calculate(countrows(Table), filter(Table,Table[tenant name]="Vacant")),countrows(Table))

 

No need multiple by 100, Mark as % column

Data Format New Rib.png

@amitchandak Thanks so much! It worked.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.