Forum Discussion
simon_pbi_data
2 years agoFrequent Visitor
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...
- Anonymous2 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 tableTable = 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.
Anonymous
2 years agoNot applicable
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.
simon_pbi_data
2 years agoFrequent Visitor
Thanks a lot, now its work 🙂