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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Add Percentage Values based on External Sales.

Hi Experts

 

How would you amend the current DAX Measure to add percenatge value based on External Sale. into the Measure to Column so the data and percentage values are as the excel file attached.

 

Excel File.

https://www.dropbox.com/scl/fi/pku9r6ojigak7uv1otbiu/Values.xlsx?dl=0&rlkey=2gmprbli0xsw98dbijjbw3ro... 

 

Sample PBIX

https://www.dropbox.com/s/t1lbguwygrc5nzn/PLP_Test_2%20%281%29%20%281%29.pbix?dl=0 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Solution to question the % values should take the following forum..

2020 Full Year =
VAR _external =
SUMX (
FILTER (
ALL ( Logistics_ ),
Logistics_[New_Reporting_Headers]="External Sales"
),
[__v_Act2020]
)
VAR _Duty =
SUMX (
FILTER (
ALL ( Logistics_ ),
Logistics_[New_Reporting_Headers]="Duty"
),
[__v_Act2020]
)
VAR _DutyPercentage =
FORMAT(DIVIDE(_duty,_external,0),"0.0%;(0.0%)")
VAR _Inbound_Freight =
SUMX (
FILTER (
ALL ( Logistics_ ),
Logistics_[New_Reporting_Headers]=
"Inbound Freight"
),
[__v_Act2020]
)
VAR _InboundPercentage =
FORMAT(DIVIDE(_Inbound_Freight,_external,0),"0.0%;(0.0%)")
VAR _Warehousing_Fixed =

View solution in original post

9 REPLIES 9
v-henryk-mstf
Community Support
Community Support

Hi @Anonymous ,


Your original link has been deleted, can you re-provide the pbix file link?


Let me know immediately, looking forward to your reply.


Best Regards,

Henry

 

Anonymous
Not applicable
Anonymous
Not applicable

Morning Henry I have solved the question ill post solution later on - IT issues...

Hi @Anonymous ,


If this problem has been resolved, you can mark yourself or delete this post.🙂

Best Regards,
Henry

amitchandak
Super User
Super User

@Anonymous , Try one of the two measures

 

divide(calculate([measure 2], filter(Logistics_,Logistics_[new_Reporting_header] ="External sales")),[Measure 2])

 

 

divide(calculate([measure 2], filter(Logistics_,Logistics_[new_Reporting_header] ="External sales")),calculate([Measure 2], allselected(Logistics_)))

Anonymous
Not applicable

Solution to question the % values should take the following forum..

2020 Full Year =
VAR _external =
SUMX (
FILTER (
ALL ( Logistics_ ),
Logistics_[New_Reporting_Headers]="External Sales"
),
[__v_Act2020]
)
VAR _Duty =
SUMX (
FILTER (
ALL ( Logistics_ ),
Logistics_[New_Reporting_Headers]="Duty"
),
[__v_Act2020]
)
VAR _DutyPercentage =
FORMAT(DIVIDE(_duty,_external,0),"0.0%;(0.0%)")
VAR _Inbound_Freight =
SUMX (
FILTER (
ALL ( Logistics_ ),
Logistics_[New_Reporting_Headers]=
"Inbound Freight"
),
[__v_Act2020]
)
VAR _InboundPercentage =
FORMAT(DIVIDE(_Inbound_Freight,_external,0),"0.0%;(0.0%)")
VAR _Warehousing_Fixed =

Hi @Anonymous ,

 

Good job!😋

 

Best Regards,

Henry

Anonymous
Not applicable

Hi Amit - Any thoughts its not giving the values for the percentages???

Anonymous
Not applicable

Hi Amit

Well this give me Values and % in the same column???

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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