Forum Discussion
Column calculated based on multiple row values
Hi Syndicate_Admin ,
sorry, I am not able to answer to your second question. Maybe if you send me a sample of this intermediate table, I could better imagine what is an alternative solution.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello
Thanks for the quick response. I can think of something like this:
| Reading | Creation | Modification | Erase | User Type |
| X | Reader | |||
| X | X | Creator | ||
| X | X | X | Editor | |
| X | X | X | X | Manager |
Thank you
Jose
- mangaus11113 years agoSolution Sage
Hi Syndicate_Admin ,
it seems to me that your new table does not help to improve the model. What your table do, it is setting the rules, but the rules are already inside my measure.
To improve the model, I suggest you to use this other measure that takes into account all the possible combinations of permissions, for example if you need 2 different kind of Editor
Measure 2 = SWITCH( MAX('Final Table'[Path]), "Reading","Reader", "Reading|Creation","Creator", "Reading|Modify","Editor Level I", "Reading|Creation|Modify","Editor Level II", "Reading|Creation|Modify|Erase","Manager", "Not classified" )If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.