March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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
Solved! Go to Solution.
@lilySixteen , Something like this
divide(calculate(countrows(Table), filter(Table,Table[tenant name]="Vacant")),countrows(Table))
No need multiple by 100, Mark as % column
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!
@lilySixteen , Something like this
divide(calculate(countrows(Table), filter(Table,Table[tenant name]="Vacant")),countrows(Table))
No need multiple by 100, Mark as % column
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |