Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I have a requirement to show the EPIC name(we have 3 EPIC names) in % for each month wise based on EPIC's count
I got the correct out in 100% Stacked column chart like below
However I need to show the same % in table visual based on EPIC Names count (due to difficult to see the data for less values i.e Yellow )
I am expecting the DAX or any other logics for the same
out put should be like below bolded one ( I am just manually given for Jan month . need to get out like that for all the months)
January - All Other EPICS - 31 - 65.96%
January - QB BAU/CI EPIC - 12 - 25.53%
January - QB Tech Debt - 4 - 8.51%
Thanks in advance 😊
Solved! Go to Solution.
@Anonymous
Measure =
DIVIDE (
[EPIC Names count],
CALCULATE (
[EPIC Names count],
REMOVEFILTERS ( Table[New EPIC_Name])
)
)
@Anonymous , Based on what I got. Hope you have meausre EPIC Names count
new measure =
Divide([EPIC Names count], calculate([EPIC Names count], removefilters(Table[Month])))
Hi Amit,
Thank you for your replay..
I just used your DAX formula however I am getting the 100% for all like below which is not correct one.
@Anonymous
Measure =
DIVIDE (
[EPIC Names count],
CALCULATE (
[EPIC Names count],
REMOVEFILTERS ( Table[New EPIC_Name])
)
)
User | Count |
---|---|
15 | |
11 | |
6 | |
6 | |
5 |
User | Count |
---|---|
30 | |
18 | |
11 | |
7 | |
5 |