Forum Discussion

Ramps's avatar
Ramps
Helper I
8 years ago
Solved

Filtering multiple instances

Salesfile contains the fields Invoice Ref, Date, Week, Customer, Product & Quantity. (To keep things simple in this example the invoice line is unique for each row).

 

How can the invoice lines be listed in a Power BI Table (not Excel) just for products with more than 1 invoice in any week?

See example of Salesfile and the Desired Report. 

Note the Radio product only had one invoice in week 5 but 2 in week 6

 

Many thanks in advance for sharing hints and tips.

 

Example Salesfiles:-

ProductWeekCustomerQuantityDateInvoice
Car4John2526-Jan-185894
Kettle2Mary1611-Jan-189864
Laptop2Gill2811-Jan-185678
Phone3Paul814-Jan-183256
Phone3Kath1714-Jan-183256
Radio5John3430-Jan-187654
Radio6Gill3105-Feb-188786
Radio6Mary1910-Feb-184568
TV1Mary2801-Jan-181234
TV1Fred1405-Jan-182267
Washing Machine3John1916-Jan-18

1567

 

 

Desired report:-

ProductWeekCustomerQuantityDateInvoice
Phone3Paul814-Jan-183256
Phone3Kath1714-Jan-183256
Radio6Gill3105-Feb-188786
Radio6Mary1910-Feb-184568
TV1Mary2801-Jan-181234
TV1Fred1405-Jan-182267

 

  • Hi Ramps

     

    One way is to create a CALCULATED TABLE....

    From the Modelling Tab >>> NEW TABLE

     

    Table =
    VAR supportingtable =
        ADDCOLUMNS (
            SalesFile,
            "Morethan1Invoice", CALCULATE (
                COUNT ( SalesFile[Invoice] ),
                ALLEXCEPT ( SalesFile, SalesFile[Product], SalesFile[Week] )
            )
        )
    RETURN
        FILTER ( supportingtable, [Morethan1Invoice] > 1 )

4 Replies

  • Zubair_Muhammad's avatar
    Zubair_Muhammad
    Community Champion

    Hi Ramps

     

    One way is to create a CALCULATED TABLE....

    From the Modelling Tab >>> NEW TABLE

     

    Table =
    VAR supportingtable =
        ADDCOLUMNS (
            SalesFile,
            "Morethan1Invoice", CALCULATE (
                COUNT ( SalesFile[Invoice] ),
                ALLEXCEPT ( SalesFile, SalesFile[Product], SalesFile[Week] )
            )
        )
    RETURN
        FILTER ( supportingtable, [Morethan1Invoice] > 1 )
      • Zubair_Muhammad's avatar
        Zubair_Muhammad
        Community Champion

        Ramps

         

        Or you can add a calculated column and use it to filter the table

         

        Column =
        CALCULATE (
            COUNT ( SalesFile[Invoice] ),
            ALLEXCEPT ( SalesFile, SalesFile[Product], SalesFile[Week] )
        )
    • Ramps's avatar
      Ramps
      Helper I

      Thank you Zubair_Muhammad for helping me twice this week with hints and tips.

       

      I got your well explained solution to work OK, thank you, and I will try the 2nd suggestion  later.