Forum Discussion

simon_pbi_data's avatar
simon_pbi_data
Frequent Visitor
2 years ago
Solved

Visualize table with date before a maximum date from a slicer

Hi everyone, I need to create a measure (or other method) to see rows details in my "details page" from my "overview page" not considering start date from slicer date on the "details page". DATA...
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi simon_pbi_data ,

    The Table data is shown below:

    Please follow these steps:
    1. Use the following DAX expression to create a table

    Table = SELECTCOLUMNS('Ticket_PBI',"ticiket_id",'Ticket_PBI'[ticket_id],"input_date",'Ticket_PBI'[input_date])

    2.Use the following DAX expression to create a measure

    _input_date = CALCULATE(SELECTEDVALUE('Table'[input_date]) ,'Table'[input_date] <= MAX('Calendar_PBI'[Date]))

    3.Final output

    Best Regards,
    Wenbin Zhou
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.