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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Anonymous
Not applicable

Calculated Table error with data refresh

This post is a follow up to a previous post but it's hard to get eyes on older posts with accepted solutions. I was able to create a calculated table using the below DAX, however, when I refreshed my data it caused an error that says "The arguments in GenerateSeries function cannot be blank." Since small tweaks to the dataset were done (nothing changed in the referenced columns) I tried deleting the original table and re-created the table but I am still getting the same error. Any ideas? 

 

Calculated Table =
GENERATE (
    Table1,
    VAR Beg =
        YEAR ( Table1[Enrollment Date] )
    VAR Fin =
        IF (
            ISBLANK ( YEAR ( Table1[Exit Date] ) ),
            YEAR ( TODAY () ),
            YEAR ( Table1[Exit Date] )
        )
    RETURN
        SELECTCOLUMNS ( GENERATESERIES ( Beg, Fin ), "Service Year", [Value] )
)

 

1 ACCEPTED SOLUTION
TeigeGao
Solution Sage
Solution Sage

Hi @Anonymous ,

Please check if you have blank data in the Table1[Enrollment Date] column or exists some data of wrong format which cannot uses YEAR() function, you can try to use IF ISBLANK() to find this value.

Best Regards,

Teige

View solution in original post

3 REPLIES 3
TeigeGao
Solution Sage
Solution Sage

Hi @Anonymous ,

Please check if you have blank data in the Table1[Enrollment Date] column or exists some data of wrong format which cannot uses YEAR() function, you can try to use IF ISBLANK() to find this value.

Best Regards,

Teige

Greg_Deckler
Super User
Super User

Did you change the name of your Table1 query? Seems that for some reason Beg and/or Fin are returning blank.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

@Greg_Deckler - nope, I did not change the name of the query or table or any of the column names.

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.