Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 211 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 77 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Can we use group by when using Filter function?

I have this two metrics that I am adding together but i also wanted to group the results set by employee ID, however i cant figure out how to use the group by with my filter function. any suggestions?
FILTER("Fact - Ap"."# Applicants" USING ( "Details"."Active Flg" = '1' )+
FILTER("Fact - "."# of Applications" USING ("Details"." Name" IN ('Passed Application Review')
Answers
-
Hi,
not with filter, no, but you can filter filter results, or you could use SUM by with a case statement to achieve a similar result.
Or you could use Bin logic.
So there are a number of ways.
0 -
How can I use the BIN logic to achieve my results?
0