Forum Discussion

amikm's avatar
amikm
Icon for Helper V rankHelper V
4 years ago
Solved

issue with Selectcolumns and filter in DAX

I am trying to solve the below business logic using DAX:
I need a list of customer that has all
Nyka bags in last 18 mos
All orders in last 18 mos.
The date of last Nyka order
Who is the Sales rep on order
What is order status?

I have written a below DAX:

 

Table =
FILTER (
    SELECTCOLUMNS (
        FILTER ( Sales, Sales[Vendor_Name] = "NYKA" ),
        "CUSTOMER NO", Sales[CUSTOMER_NO],
        "Venodor Name", Sales[Vendor_Name],
        "Order Date", Sales[ORDER_DATE],
        "SALES REP", Sales[SALES_REP_ID],
        "ORDER STATUS", Sales[ORDER_STATUS]
    ),
    DATESINPERIOD (
        'Sales'[ORDER_DATE],
        MAX ( 'Sales'[ORDER_DATE] ),
        -18,
        MONTH
    )
)

 

looks like my order date is not filtering correctly also, I have a doubt Like I transform the business logic using correct or optimized dax or not?

 

Need help or suggestion

 

Thanks,

 

  • Hi amikm 

     

    You can use the following code to create a filtered table. 

    Table 2 =
    SELECTCOLUMNS (
        FILTER (
            Sales,
            Sales[Vendor_Name] = "NYKA"
                && Sales[ORDER_DATE] > EDATE ( MAX ( Sales[ORDER_DATE] ), -18 )
        ),
        "CUSTOMER NO", Sales[CUSTOMER_NO],
        "Venodor Name", Sales[Vendor_Name],
        "Order Date", Sales[ORDER_DATE],
        "SALES REP", Sales[SALES_REP_ID],
        "ORDER STATUS", Sales[ORDER_STATUS]
    )
    

     

    You can use EDATE to get the date that is the indicated number of months before or after the start date.

     

    Best Regards,
    Community Support Team _ Jing
    If this post helps, please Accept it as Solution to help other members find it.

2 Replies

  • v-jingzhang's avatar
    v-jingzhang
    Icon for Community Support rankCommunity Support

    Hi amikm 

     

    You can use the following code to create a filtered table. 

    Table 2 =
    SELECTCOLUMNS (
        FILTER (
            Sales,
            Sales[Vendor_Name] = "NYKA"
                && Sales[ORDER_DATE] > EDATE ( MAX ( Sales[ORDER_DATE] ), -18 )
        ),
        "CUSTOMER NO", Sales[CUSTOMER_NO],
        "Venodor Name", Sales[Vendor_Name],
        "Order Date", Sales[ORDER_DATE],
        "SALES REP", Sales[SALES_REP_ID],
        "ORDER STATUS", Sales[ORDER_STATUS]
    )
    

     

    You can use EDATE to get the date that is the indicated number of months before or after the start date.

     

    Best Regards,
    Community Support Team _ Jing
    If this post helps, please Accept it as Solution to help other members find it.