Forum Discussion
walker8888
Helper II
4 years agoClustered Bar chart 100%
Ihave a chart that has both Internal and External FTE's %. I want both to equal to a total of 100% but seperately. Instead they both combined equal to 100%. How do I get the result I want? Thanks in advance!
2 Replies
- amitchandak
Super User
Create a measure like
divide([Measure], calculate([Measure], filter(allselected(Table), Table[fte] = max(Table[fte]) ) ) )
- walker8888
Helper II
I have never written a measure so I am a bit confused on where to put what