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 September 15. Request your voucher.

Reply
juhoneyighot
Helper III
Helper III

Overall total amount not showing

Hello,

 

I need help how to add the overall total of all Name (or Project). I have here a formula wherein it will only shows the total per Name (Project), per _Current PM Contact and per _Jobphase. I have a hard time what formula to insert here to get the overall total amount of all Name (Project).

 

Rev Recog =
VAR _project = [Est Rev] * [% Comp]
VAR _total =
SUMX ( ALLSELECTED ( msdyn_project[Name] ), [Est Rev] * [% Comp] )
VAR _total2 =
SUMX ( ALLSELECTED ( msdyn_project[Name] ), [Est Rev] * [% Comp] )
RETURN
IF (
ISINSCOPE ( msdyn_project[Name] ),
_project,
IF ( ISINSCOPE (msdyn_project[_CurrentPM contact] ),
_total,
IF ( ISINSCOPE (msdyn_project[_JobPhase] ),
_total2)

))

juhoneyighot_0-1721656340254.png

Hope you will help me on this.

 

Thank you so much.



1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @juhoneyighot - create a below measure to get the overall total amount of all projects (or names) in your calculation

 Measure:

Rev Recog =
VAR _project = [Est Rev] * [% Comp]
VAR _total =
SUMX (
ALLSELECTED ( msdyn_project[Name] ),
[Est Rev] * [% Comp]
)
VAR _total2 =
SUMX (
ALLSELECTED ( msdyn_project[Name] ),
[Est Rev] * [% Comp]
)
VAR _overallTotal =
SUMX (
ALL ( msdyn_project[Name] ),
[Est Rev] * [% Comp]
)
RETURN
IF (
ISINSCOPE ( msdyn_project[Name] ),
_project,
IF (
ISINSCOPE ( msdyn_project[_CurrentPM contact] ),
_total,
IF (
ISINSCOPE ( msdyn_project[_JobPhase] ),
_total2,
_overallTotal
)
)
)

 

Hope it works

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





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

Proud to be a Super User!





View solution in original post

1 REPLY 1
rajendraongole1
Super User
Super User

Hi @juhoneyighot - create a below measure to get the overall total amount of all projects (or names) in your calculation

 Measure:

Rev Recog =
VAR _project = [Est Rev] * [% Comp]
VAR _total =
SUMX (
ALLSELECTED ( msdyn_project[Name] ),
[Est Rev] * [% Comp]
)
VAR _total2 =
SUMX (
ALLSELECTED ( msdyn_project[Name] ),
[Est Rev] * [% Comp]
)
VAR _overallTotal =
SUMX (
ALL ( msdyn_project[Name] ),
[Est Rev] * [% Comp]
)
RETURN
IF (
ISINSCOPE ( msdyn_project[Name] ),
_project,
IF (
ISINSCOPE ( msdyn_project[_CurrentPM contact] ),
_total,
IF (
ISINSCOPE ( msdyn_project[_JobPhase] ),
_total2,
_overallTotal
)
)
)

 

Hope it works

 

Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!





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

Proud to be a Super User!





Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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