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
Rocky_Brown
Helper I
Helper I

Dax Help

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.

 

 

1 ACCEPTED SOLUTION
bolfri
Super User
Super User

Years = CALCULATETABLE(VALUES('Date'[Date].[Year]);NOT(ISBLANK('Date'[Date].[Year])))

You can filter out the blank values.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
Shaurya
Memorable Member
Memorable Member

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

bolfri
Super User
Super User

Years = CALCULATETABLE(VALUES('Date'[Date].[Year]);NOT(ISBLANK('Date'[Date].[Year])))

You can filter out the blank values.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Accepted

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.