Reply
AllanBerces
Post Prodigy
Post Prodigy
Partially syndicated - Outbound

Daily Sum

Hi Good day,

Can anyone help me on how can i achieved my desired output. I need the sum of Daily Plan regardless of location. The Total Plan/day is the sum of Plan Hrs per planDate.

 

AllanBerces_0-1742282505874.png

DESIRED OUTPUT

AllanBerces_1-1742282557858.png

Thank you

1 ACCEPTED SOLUTION
Khushidesai0109
Responsive Resident
Responsive Resident

Syndicated - Outbound

Hii @AllanBerces 
if you need it your way this can be done

Total Plan/day =
VAR TotalPerDay =
CALCULATE(
SUM('YourTable'[Plan Hrs]),
ALLEXCEPT('YourTable', 'YourTable'[PlanDate])
)

VAR FirstOccurrenceCheck =
RANKX(
FILTER('YourTable', 'YourTable'[PlanDate] = EARLIER('YourTable'[PlanDate])),
'YourTable'[Plan Hrs],
,
ASC,
DENSE
)

RETURN
IF(FirstOccurrenceCheck = 1, TotalPerDay, BLANK())



But the main thing to do it to create measure as it is more appropriate 
Total Plan/day =
CALCULATE(
SUM('YourTable'[Plan Hrs]),
ALLEXCEPT('YourTable', 'YourTable'[PlanDate])
)
Did I answer your question? Mark my post as a solution!
I'd appreciate the kuddos as well

View solution in original post

8 REPLIES 8
Khushidesai0109
Responsive Resident
Responsive Resident

Syndicated - Outbound

Hii @AllanBerces 
if you need it your way this can be done

Total Plan/day =
VAR TotalPerDay =
CALCULATE(
SUM('YourTable'[Plan Hrs]),
ALLEXCEPT('YourTable', 'YourTable'[PlanDate])
)

VAR FirstOccurrenceCheck =
RANKX(
FILTER('YourTable', 'YourTable'[PlanDate] = EARLIER('YourTable'[PlanDate])),
'YourTable'[Plan Hrs],
,
ASC,
DENSE
)

RETURN
IF(FirstOccurrenceCheck = 1, TotalPerDay, BLANK())



But the main thing to do it to create measure as it is more appropriate 
Total Plan/day =
CALCULATE(
SUM('YourTable'[Plan Hrs]),
ALLEXCEPT('YourTable', 'YourTable'[PlanDate])
)
Did I answer your question? Mark my post as a solution!
I'd appreciate the kuddos as well

Syndicated - Outbound

Hi @Khushidesai0109 thank you very much for the reply, working good.

MattiaFratello
Responsive Resident
Responsive Resident

Syndicated - Outbound

Hi @AllanBerces, please use the following:

Total Plan Day =
CALCULATE(
    SUM('Table (2)'[Plan Hrs]),
    ALLEXCEPT('Table (2)', 'Table (2)'[PlanDate])
)
 
MattiaFratello_0-1742285701346.png

 

ryan_mayu
Super User
Super User

Syndicated - Outbound

@AllanBerces 

you can try this

 

Column = CALCULATE(sum('Table (2)'[Plan Hrs]),ALLEXCEPT('Table (2)','Table (2)'[PlanDate]))
 
11.PNG
 
or create a measure
 
Measure = CALCULATE(sum('Table (2)'[Plan Hrs]),ALLEXCEPT('Table (2)','Table (2)'[PlanDate]))
 
12.PNG
 
 




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

Proud to be a Super User!




Syndicated - Outbound

Hi @ryan_mayu @MattiaFratello thank you very much for the reply, is it possible the sum will appeared only once in each date, the same as my example for the calculated column.

Than you

Syndicated - Outbound

that's not a good way to display data. you can create measure if you only want to see it once.





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

Proud to be a Super User!




Syndicated - Outbound

Hi @ryan_mayu thank you very much, will check to change it to measure

Syndicated - Outbound

AllanBerces_0-1742286122011.png

 

avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)