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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
AnandRanga
Helper III
Helper III

how to sum all the values without distinct filter ?

This is my expression:

 

CALCULATE (
    SUM ( WHourOAI[WCalWorkingHour] ),
    FILTER (
        WHourOAI,
        FORMAT ( WHourOAI[TRANSDATE], "dd MMMM, yyyy" )
            > FORMAT ( "13 July, 2015", "dd MMMM, yyyy" )
            && FORMAT ( WHourOAI[TRANSDATE], "dd MMMM, yyyy" )
                < FORMAT ( TODAY (), "dd MMMM, yyyy" )
    )
)

 

It's working but not shosing the correct values, If I apply a month filter and check for the sum of feb month it shows only 8 i.e. unique or distinct value. but i want to sum  all the values because in my table it contains only 1 record on a single date. How to remove this default filter??

Thanks for your time.

1 REPLY 1
Greg_Deckler
Community Champion
Community Champion

Not entirely sure, but it sounds like you want an ALL clause like:

 

CALCULATE (
    SUM ( WHourOAI[WCalWorkingHour] ),
    ALL(WHourOAI),
    FILTER (
        WHourOAI,
        FORMAT ( WHourOAI[TRANSDATE], "dd MMMM, yyyy" )
            > FORMAT ( "13 July, 2015", "dd MMMM, yyyy" )
            && FORMAT ( WHourOAI[TRANSDATE], "dd MMMM, yyyy" )
                < FORMAT ( TODAY (), "dd MMMM, yyyy" )
    )
)

Tough to say without sample data and expected output.



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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.