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 need to help please to create a dax formula that adds the sales of my channel column:
I don't know if it's possible
of anteman
Solved! Go to Solution.
You need the following measure:
% por canal =
VAR _ALL = CALCULATE ([Measure Sum Deuda], ALL(fTable[Canal])
RETURN
DIVIDE([Measure Sum Deuda]), _ALL)
Format this measure as a % in the ribbon
then create the line chart using this measure and add fTable[Canal] as the legend
Proud to be a Super User!
Paul on Linkedin.
Thanks a lot! for the help!
Best regards
thank you very much, but to be able to make a line chart that shows in % ?
that I need to replicate
Best regards
You need the following measure:
% por canal =
VAR _ALL = CALCULATE ([Measure Sum Deuda], ALL(fTable[Canal])
RETURN
DIVIDE([Measure Sum Deuda]), _ALL)
Format this measure as a % in the ribbon
then create the line chart using this measure and add fTable[Canal] as the legend
Proud to be a Super User!
Paul on Linkedin.
You can show the totals by "Canal" in any number of ways: for example using a simple SUM measure or using ALLEXCEPT as a filter in a measure:
Measure Sum Deuda =
SUM(fTable[DEUDA TOTAL])
SUM ALLEXCEPT =
CALCULATE([Measure Sum Deuda], ALLEXCEPT(fTable, fTable[Canal]))
I've attached the sample PBIX file
Proud to be a Super User!
Paul on Linkedin.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
80 | |
76 | |
59 | |
36 | |
32 |
User | Count |
---|---|
92 | |
59 | |
59 | |
49 | |
41 |