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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Padding a graph with dummy values

Hi Experts,

 

I have a Department tables wit h departments data , some departments have data since 2018 Jan, but some only have from 2019 Jan.

Requirement is that even when a department does not have existance in a 2018 the graph should display date from 2018 Jan .Is this possible?

 

Sample Data

 

DepartmentsHeadcountReport Date
Department 1200Jan-18
Department 1250Jan-19
Department 220Jan-18
Department 223Jan-19
Department 330Jan-19

 

Thanks 

DJ

1 ACCEPTED SOLUTION
sturlaws
Resident Rockstar
Resident Rockstar

Hi @Anonymous

I would say it is possible, but your specification is a bit short. How do you want to visualize this? With department on axis, or just the total of all departments and time? Do you just want to see the values for january 2018 and january 2019, or do you want to se the values between as well? Which value should be used for a department which has no value in january 2018, 0 or the value from january 2019?

 

Here is a version that will work if you have department on axis or legend, and want to use the 2019 value if 2018 is blank.

number of employees number from next year =
VAR firstYear =
    CALCULATE ( MIN ( Department[Report Date] ); ALL ( 'date'[Report Date] ) )
VAR firstValue =
    CALCULATE (
        SUM ( Department[Headcount] );
        FILTER ( ALL ( 'date'[Report Date] ); 'date'[Report Date] = firstYear )
    )
RETURN
    IF (
        ISBLANK ( SUM ( Department[Headcount] ) );
        firstValue;
        SUM ( Department[Headcount] )
    )


Cheers,
Sturla

View solution in original post

1 REPLY 1
sturlaws
Resident Rockstar
Resident Rockstar

Hi @Anonymous

I would say it is possible, but your specification is a bit short. How do you want to visualize this? With department on axis, or just the total of all departments and time? Do you just want to see the values for january 2018 and january 2019, or do you want to se the values between as well? Which value should be used for a department which has no value in january 2018, 0 or the value from january 2019?

 

Here is a version that will work if you have department on axis or legend, and want to use the 2019 value if 2018 is blank.

number of employees number from next year =
VAR firstYear =
    CALCULATE ( MIN ( Department[Report Date] ); ALL ( 'date'[Report Date] ) )
VAR firstValue =
    CALCULATE (
        SUM ( Department[Headcount] );
        FILTER ( ALL ( 'date'[Report Date] ); 'date'[Report Date] = firstYear )
    )
RETURN
    IF (
        ISBLANK ( SUM ( Department[Headcount] ) );
        firstValue;
        SUM ( Department[Headcount] )
    )


Cheers,
Sturla

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.