Forum Discussion
Too few arguments were passed to the FILTER function error
You haven't closed the ALL statement; FILTER(ALL('Bearbeiten - FA-Arbeitsgang'[Status]),
Br,
Johannes
8 Replies
- tex628
Community Champion
You haven't closed the ALL statement; FILTER(ALL('Bearbeiten - FA-Arbeitsgang'[Status]),
Br,
Johannes- forgetmenot
Helper I
I am also having smilar issue.
can someone please advise?
Average New = CALCULATE(AVERAGE('Current & Prior Forecast Combined'[FYE FINAL]), Filter('Current & Prior Forecast Combined'[CL Type]="New"))- Dangar332
Resident Rockstar
hi , forgetmenot
filter need table argument as a first expression which you not mention you only mention filter expression
Average New = CALCULATE(AVERAGE('Current & Prior Forecast Combined'[FYE FINAL]), Filter(Current & Prior Forecast Combined','Current & Prior Forecast Combined'[CL Type]="New"))
- AnonymousNot applicable
I need to change the very last part of this statement to exclude if the date is 1/1/2099.
Current Staff =CALCULATE( COUNTROWS( 'HRData' ),FILTER( VALUES( 'HRData'[Hire_Date] ), 'HRData'[Hire_Date] <= max('Calendar'[Date] ) ),FILTER( VALUES( 'HRData'[Termination_Date] ), or( 'HRData'[Termination_Date] >= MIN('Calendar'[Date] ), ISBLANK( 'HRData'[Termination_Date] ) ) ) )This is my very first time asking a question, so if I'm not following the proper steps please let me know.
- tex628
Community Champion
Hi Anonymous,
Just to make sure i'm on the right track. You dont want to count employees with termination date 2099/1/1?
Br,
J- AnonymousNot applicable
That is correct. I'm sure its a simple matter of syntax, but again I am learning and hoping to learn more in this forum. Thanks