The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 | |
13 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
19 | |
12 | |
9 | |
5 |