Forum Discussion
Multiple row and Column Add up (Remove Duplicates)
Hi Altonga
You can try the following
%Trained =
MAX ( 'Table'[Scenario1%] ) + MAX ( 'Table'[Scenario2%] )
+ MAX ( 'Table'[Scenario3%] )
+ MAX ( 'Table'[Task1%] )
+ MAX ( 'Table'[Task1%] )Hi tamerj1,
Thank you so much for your reply, this worked perfectly! I have noticed that it has affected one of my other visuals which I was showing a top level view for the training records. Please see below. (The top visual.)
Is there a way to make the data from the previous solution work in such a view?
- Altonga3 years agoFrequent Visitor
Hi tamerj1 , So If there was some way to use the data created from the measure you helped me with before to display on a visual somewhat to the above image? Showing the number of indiviuals who have acheived either 10%, 20% and so on. Apologise if not clear I'm having a hard time explaining it myself haha.
- tamerj13 years agoCommunity Champion
Hi Altonga
manually insert a single column table that contains the values you want to slice by, for example 0.1, 0.2, 0.3, etc.. let's call it Scores[Score]. This single column table shall remain disconnected from the main table or sny other table you have in your data model.
now you can use the following measure in a stacked column column chart were Scores[Score] is on the x-axis and the subject is on the legendSMX ( IF [%Trained] = SELECTEDVALUE ( Scores[Score] ), 1 )