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
balu810
Frequent Visitor

show all values in chart

i have a month filter which is filtering the chart with the respective selections , i have an requirments where i need to show all employees irrespective of selection in month and show 0 for them ,,i tried show values with no data but its not working .

 

Note : chart has to filter the employees according to slicer selection , only month selection should return all employees .

 

EMP IDMonthYearManager IDPlanned TimeRecorded Time
1Apr202223528
2Mar202253529
3Jan202223530
4Feb202253525
5Mar202253535

 

balu810_0-1650520745387.png

 values in chart has below caluclated column

 

Missing Time = IF('Table'[Recorded Time]>'Table'[Planned Time], 0 ,'Table'[Planned Time]-'Table'[Recorded Time])
1 ACCEPTED SOLUTION
v-chenwuz-msft
Community Support
Community Support

Hi  @balu810 , 

 

You should create a new table only contains Year and Month, and use these columns to do filter.

Date slicer = crossjoin(VALUES('Table'[Year]),VALUES('Table'[Month]))
Use this expression to calcualte the Missing Time:

Measure =
VAR _c =
    CALCULATE (
        SUM ( 'Table'[Missing Time] ),
        FILTER (
            'Table',
            [Year]
                IN VALUES ( 'Date slicer'[Year] )
                    && [Month] IN VALUES ( 'Date slicer'[Month] )
        )
    )
RETURN
    IF ( ISBLANK ( _c ), 0, _c )

Result:

vchenwuzmsft_1-1650952722338.png

 

Pbix in the end you can refer.
Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
v-chenwuz-msft
Community Support
Community Support

Hi  @balu810 , 

 

You should create a new table only contains Year and Month, and use these columns to do filter.

Date slicer = crossjoin(VALUES('Table'[Year]),VALUES('Table'[Month]))
Use this expression to calcualte the Missing Time:

Measure =
VAR _c =
    CALCULATE (
        SUM ( 'Table'[Missing Time] ),
        FILTER (
            'Table',
            [Year]
                IN VALUES ( 'Date slicer'[Year] )
                    && [Month] IN VALUES ( 'Date slicer'[Month] )
        )
    )
RETURN
    IF ( ISBLANK ( _c ), 0, _c )

Result:

vchenwuzmsft_1-1650952722338.png

 

Pbix in the end you can refer.
Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

amitchandak
Super User
Super User

@balu810 , try a measure like

m1= sum(Table[Missing Time]) +0

 

or use this option on employee

ShowItemwithoutdata.JPG

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.