- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Does function FILTER() work with another function given as a parameter?
Hi,
I’m trying to calculate table B from filtered table A (the filter condition is a cutting date):
Does anyone know what I'm doing wrong in case B?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In your file Table3 is a calculated table ...
Calculated tables are static parts of a model : their content will not change based on selections or slicers.
You can use table expressions in measures to obtain dynamic selections, though ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This may be related to: http://www.sqlbi.com/articles/usage-of-dates-argument-in-a-row-context/
The short explanation is: FIRSTDATE has an implicit CALCULATE and is evaluated depending on the row context of TableA.
If correct, your condition probably evaluates to TRUE for each row.
Try with the MIN function instead.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Laurent Cuarto, first of all many thanks for your prompt response.
I would like to apologise for don't explain correctly the situation before.
You can see in Case C the real problem. In fact, once I give the measure to the filter function, the filter doesn't work as I want.
It seems that the filter function doesn't accept a measure
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The article I linked to explains this in details.
For the short explanation ...
FILTER( Table, Table[date] <= FIRSTDATE(Dates[date]) )
FILTER( Table, Table[date] <= CALCULATE(MIN(Dates[date])) )
FILTER( Table, Table[date] <= [MINDATE measure] )
... will all give you unexpected results because the right-hand side of your filter expression is calculated within the row context (it returns the date for the current row, that is Table[date]).
As a consequence, your inequality always evaluates to true.
On the contrary, this should work:
FILTER( Table, Table[date] <= MIN(Dates[date]) )
The reason is this MIN(Dates[date]) is calculated for the current filter context your measure is evaluated in returns the same result for all rows in Table. As a consequence, it will be true for some rows and not for others.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi LaurentCuarto,
I would like to apologise, I haven't explained well what I'm trying to do.
I've created this example in order to explain it better.
Case A:
Case B:
In these examples, Table 1 and Table 2 are input data.
In case A the result (Table 3), is filtered according to the minimum of Table 2[Date], that is correct.
In case B the result (Table 3), isn't filtered according to the minimum of the filter (slicer), that references Table 2. In case B, the minimun date in the filter (slicer) is 05/10/2016, but Table 3 is cut by the date 03/10/2016, what isn't correct, it should be cut by the date 05/10/2016,
I attach the link where is the Power BI Desktop document, that contains this example, just in case you want to open it.
https://www.dropbox.com/s/7tawmtjz8a1ytdz/ej1.pbix?dl=0
Thank you in advance for your attention.
Cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In your file Table3 is a calculated table ...
Calculated tables are static parts of a model : their content will not change based on selections or slicers.
You can use table expressions in measures to obtain dynamic selections, though ...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Actually I don't need to calculate any table, so I can get by with thise:
SUMX(
FILTER(table1;table1[date]<=MIN(dates_min[date]))
;table1[A])
Thank you very much
Cheers

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
07-12-2024 01:58 PM | |||
Anonymous
| 10-09-2023 05:12 AM | ||
02-07-2024 01:15 AM | |||
11-07-2023 02:48 AM | |||
06-21-2024 11:25 PM |
User | Count |
---|---|
29 | |
16 | |
14 | |
13 | |
13 |