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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Total Sum with Different Columns In Direct Query

Hello, 

 

I'm having trouble performing dax formula to give me the total spend for each table (asianamerican,diverse,africanamerican,wbe,divattributes) with the total coming from the fiscspend table with a relationship by the tax id. The Facts table (fiscspnd) is a direct query connection. 

 

1st Question For example, I'm looking to do Total Asian American Spend = Sum or Calculate? Asian Table [ethnicity] = "Asian Amerian"? I also tried to do related with no success. 

 

2nd Question :After having Total Asian American Spend I want to know the % of the Total Spend (this dax formula works)

 

Would just a simple % of Spend =total asianamerican spend / total spend? 

 

himiehendrix_0-1662069945077.png

 

Thank you for your guidance! 

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

Hi @Anonymous,

In fact, the screenshot does not help us clarify your data structure. Can you please share some more detail about these?

How to Get Your Question Answered Quickly  

You can also try to use the following measure formula if helps:

Total Asian American Spend =
CALCULATE (
    SUM ( Fiscspend[Sales] ),
    ALLSELECTED ( Fiscspend ),
    AsianAmerian[ethnicity] = "Asian Amerian"
)

% of Spend =
[Total Asian American Spend]
    / CALCULATE ( SUM ( Fiscspend[Sales] ), ALLSELECTED ( Fiscspend ) )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

1 REPLY 1
v-shex-msft
Community Support
Community Support

Hi @Anonymous,

In fact, the screenshot does not help us clarify your data structure. Can you please share some more detail about these?

How to Get Your Question Answered Quickly  

You can also try to use the following measure formula if helps:

Total Asian American Spend =
CALCULATE (
    SUM ( Fiscspend[Sales] ),
    ALLSELECTED ( Fiscspend ),
    AsianAmerian[ethnicity] = "Asian Amerian"
)

% of Spend =
[Total Asian American Spend]
    / CALCULATE ( SUM ( Fiscspend[Sales] ), ALLSELECTED ( Fiscspend ) )

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors