Forum Discussion

Libin7963's avatar
Libin7963
Helper II
3 years ago
Solved

Multiple filters on same table

Hi, I have a requirement to filter out items to find Count of items based on below criteria. It would be running report hence quarter would change each time. 

It is to find on hand items without decision at beginning of quarter

 

Type - need to filter out Types - CC and CD

Received Date  - Till last quarter(< 01/04/2023)

Decision Date -  Null and Decision taken after 01/04/2023

 

My table looks as below.

I have the below filter but I can't add anything to find the beginning of last quarter logic to it. Any help appreciated.

 

Q1a. = COUNTROWS(
    FILTER(
        Table1,
        Table1[Type] IN { "CC", "CD",} && ISBLANK(Table[DecisionDate])
    )
)

1 Reply