Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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?
Thank you for your guidance!
Solved! Go to Solution.
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
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
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
9 | |
8 |