Forum Discussion
Sams11
2 years agoFrequent Visitor
Filter on status and date condition
Hi all, please help me with this following questions: I am new to powe bi and trying this... I have column with status and updated date. I am not sure how to achieve this, kindly provide your i...
- Anonymous2 years ago
Hi Sams11
1.You can insert new step after named(Custom1)
2.and insert the follwing code
=Table.SelectRows(the last step name,e.g #"Changed Type", each ([issuetype] ="Defect") and ([status]="Closed"))3.Then insert a new step again, named Custom2
=Table.SelectRows(Custom1, each [date] >#date(2023, 4, 1) and [date] < #date(2023, 4, 30))Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Sams11
2 years agoFrequent Visitor
This is my exact jira query which I am tryingto achive in power BI..
issuetype = Defect AND status = Closed AND (status changed to Closed after '2023/04/01' AND status changed to Closed before '2023/04/30')
Anonymous
2 years agoNot applicable
Hi Sams11
1.You can insert new step after named(Custom1)
2.and insert the follwing code
=Table.SelectRows(the last step name,e.g #"Changed Type", each ([issuetype] ="Defect") and ([status]="Closed"))
3.Then insert a new step again, named Custom2
=Table.SelectRows(Custom1, each [date] >#date(2023, 4, 1) and [date] < #date(2023, 4, 30))
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.