Hello everyone i have a table that contains text
Existing data:
Upload Date | Created At | issue |
---|---|---|
2024-07-01 | 2024-07-01 | the files are bugged |
2024-07-01 | 2024-07-01 | There’s an error |
2024-07-02 | 2024-07-02 | There’s an error |
2024-07-02 | 2024-07-02 | There’s an error |
2024-07-03 | 2024-07-03 | There’s an error |
2024-07-03 | 2024-07-03 | There’s an error |
2024-07-03 | 2024-07-03 | There’s an error |
2024-07-04 | 2024-07-04 | There’s an error |
2024-07-04 | 2024-07-04 | There’s an error |
2024-07-04 | 2024-07-04 | There’s an error |
I want to show when it’s on 4 July and 5 July appears like this
Upload Date | Created At | issue |
---|---|---|
2024-07-04 | 2024-07-04 | There’s an error |
2024-07-04 | 2024-07-04 | There’s an error |
2024-07-04 | 2024-07-04 | There’s an error |
Here is my exsiting DAX:
CALCULATE(max(top_issue[created_at]),REMOVEFILTERS(top_issue[deleted_at]))
Is there any change that i need to use?