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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I am creating a Dates Table that give me Good Friday dates to use in filtering my data. I go into Modeling > New Table and create the following:
Years = Values('Date'Date.[Year])
I get the following years back Based off the existing Date table i created:
Years
2019
2020
2021
2022
2023
(Null)
I do not understand why this is giving me an extra Year as NULL. Is there a way to pull the data without giving me the null value?
Any help would be appreciated.
Thank you.
Solved! Go to Solution.
Years = CALCULATETABLE(VALUES('Date'[Date].[Year]);NOT(ISBLANK('Date'[Date].[Year])))You can filter out the blank values.
Proud to be a Super User!
Hi @Rocky_Brown,
It could be happening because you have a blank row somewhere. Please check your date table and ensure that you have continous non null values.
Did I answer your question? Mark this post as a solution if I did!
Check out this blog of mine: How to Export Telemetry Data from Azure IoT Central into Power BI
Years = CALCULATETABLE(VALUES('Date'[Date].[Year]);NOT(ISBLANK('Date'[Date].[Year])))You can filter out the blank values.
Proud to be a Super User!
Accepted
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 54 | |
| 41 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 106 | |
| 99 | |
| 38 | |
| 29 | |
| 28 |