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

Get Fabric certified for FREE! Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Real Estate Portfolio cumulative area per year

Hello

 

I have been asked to present a real estate portfolio visual which shows total cumulative sqr ft per year according to lease expiry. 

 

I have building, sqr ft and the lease exiry

 

Building A  - 100sqft - Expire 2020

Building B - 200sqft - Expire 2022

Building C - 300sqft - Expire 2024

 

So 2019 = 600sq ft, 2020 = 500sq ft, 2021 = 500 sq ft, 2022 = 300sq ft etc

 

Please can you assist as I've no idea how to sum if within the lease

 

Thanks

 

1 ACCEPTED SOLUTION

This should work. It works with the limited data that you provided. I made the table with both versions just in case:

 

Capture.PNG

 

The measure that I created is the following:

 

Answer = 
VAR selYear = SELECTEDVALUE(Table2[Expire Year])
RETURN
CALCULATE(
    SUM(Table2[sqft num]),
    ALL(table2),
    Table2[Expire Year] > selYear
)

You can see the result below the years I retrieved from the Expire Year column:

Capture1.PNG

View solution in original post

4 REPLIES 4
vega
Resolver III
Resolver III

In the table, is the square footage listed as 100sqft or just the number 100?

Anonymous
Not applicable

Just the number. Date is an actual date (dd/mm/yyyy) field although I have a column which calculates the year value

This should work. It works with the limited data that you provided. I made the table with both versions just in case:

 

Capture.PNG

 

The measure that I created is the following:

 

Answer = 
VAR selYear = SELECTEDVALUE(Table2[Expire Year])
RETURN
CALCULATE(
    SUM(Table2[sqft num]),
    ALL(table2),
    Table2[Expire Year] > selYear
)

You can see the result below the years I retrieved from the Expire Year column:

Capture1.PNG

Anonymous
Not applicable

Thank you @vega that has worked very nicely. I’ve leanrned a lot with that variable

Helpful resources

Announcements
Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.