4 questions
0
votes
1
answer
51
views
Filter multiple tables [closed]
I am currently working on a DAX query and would like to enhance it by adding an additional filter before selecting the columns. The filter I want to apply is as follows:
EVALUATE
VAR StartDate = ...
1
vote
1
answer
245
views
DAX CALCULATETABLE/SUMMARIZE filter
I am struggling to add a filter to this DAX CALCULATETABLE/SUMMARIZE code in POWER BI. Unfortunately, I get the following error:
Function SUMMARIZE expects a column name as argument number 6
I have ...
0
votes
0
answers
86
views
Calculated table isn't working the correct way anymore?
I have a calculated table within a report that consists of the latest 12 months revenue and a total of those 12 months. This automatically updates when the data is refreshed. The code used for the ...
1
vote
1
answer
256
views
Apply RLS to a calculated table
I have the following calculated table :
MyCalculatedTable =
DISTINCT (
SELECTCOLUMNS (
FILTER (
'Dim A',
LEFT('Dim A'[Group],1) = "B" &&
...