Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi, new to Power BI, first time poster. I want to analyse information about some short term accommodation we run. I have various rows for every household in accommodation with a column called "tenancy start date" and a column called "tenancy end date". I have already worked out a formula that tells me how may people are in the accommodation at todays date:
Solved! Go to Solution.
Hi @Anonymous
You may add an Update_end date column then modify the measure to get it.
Update_end date = IF(TA[tenancy end date]=BLANK(),TODAY(),TA[tenancy end date])
Measure =
CALCULATE (
COUNT ( TA[tenancy start date] ),
FILTER (
GENERATE ( TA, Dates ),
TA[tenancy start date] <= Dates[Date]
&& TA[Update_end date] >= Dates[Date]
)
)
Regards,
Hi @Anonymous
You may create a dates table.And then create a measure like below.Attached sample file for your reference.
Measure =
CALCULATE (
COUNT ( TA[tenancy start date] ),
FILTER (
GENERATE ( TA, Dates ),
TA[tenancy start date] <= Dates[Date]
&& TA[tenancy end date] >= Dates[Date]
)
)
Regards,
Wow, @v-cherch-msft - you is totally awesome.
However, I forgot to mention. If the household are currently in the accommodation, the column Tenancy end date will be blank. I have tried myself to amend your formula but to no avail.
Thank you
Peter
Hi @Anonymous
You may add an Update_end date column then modify the measure to get it.
Update_end date = IF(TA[tenancy end date]=BLANK(),TODAY(),TA[tenancy end date])
Measure =
CALCULATE (
COUNT ( TA[tenancy start date] ),
FILTER (
GENERATE ( TA, Dates ),
TA[tenancy start date] <= Dates[Date]
&& TA[Update_end date] >= Dates[Date]
)
)
Regards,
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!