Forum Discussion
Anonymous
9 years agoNot applicable
Row Level Security
Hi, For a report I need to present the detailed results for an area of the country (according to the user's permissions) but I also need to display the total profit (as a single number without an...
- 9 years ago
In theory, you should be able to create a new table with a new calculated column that simply does something like:
CALCULATE(SUM([Column]),RELATEDTABLE(Table))
Because this is a calculated column, it will calculate the value at the time of data loading and RLS will not apply to the calculation of this value.
Greg_Deckler
9 years agoCommunity Champion
In theory, you should be able to create a new table with a new calculated column that simply does something like:
CALCULATE(SUM([Column]),RELATEDTABLE(Table))
Because this is a calculated column, it will calculate the value at the time of data loading and RLS will not apply to the calculation of this value.