Forum Discussion

JeevanMallya's avatar
JeevanMallya
Resolver II
2 years ago
Solved

PwerQuery is considered Incompleted Status even though Completed is used

ISSUE_KEYSPRINT_REPORT_STATUSISSUE_TYPE_NAMESPRINT_NAME
ABC-74676INCOMPLETEDTaskSprint 208
ABC-74579COMPLETEDStorySprint 208
ABC-74585COMPLETEDStorySprint 208
ABC-74415COMPLETEDTaskSprint 208
ABC-74160COMPLETEDTaskSprint 208
ABC-74159COMPLETEDTaskSprint 208
ABC-73181COMPLETEDStorySprint 208
ABC-73875COMPLETEDStorySprint 208

 

I have these columns in Sprint Master Table and i am trying to claculate Total Completed.

The query i am using is :

WORK_UNITS_COMPLETED = IF(Sprint_Master[SPRINT_REPORT_STATUS]=="COMPLETED" && Sprint_Master[ISSUE_TYPE_NAME]=="Story" || Sprint_Master[ISSUE_TYPE_NAME]=="Task", CALCULATE(Count(Sprint_Master[ISSUE_KEY])))

 

But some how it is considering even Incompleted ones and showing result as 8.

The result is 

ISSUE_KEYSPRINT_REPORT_STATUSISSUE_TYPE_NAMEWORK_UNITS_COMPLETED
ABC-74676INCOMPLETEDTask1
ABC-74579COMPLETEDStory1
ABC-74585COMPLETEDStory1
ABC-74415COMPLETEDTask1
ABC-74160COMPLETEDTask1
ABC-74159COMPLETEDTask1
ABC-73181COMPLETEDStory1
ABC-73875COMPLETEDStory1

 

Help needed as why Incompleted is also considered when query is correct.

  • JeevanMallya 

    No problem, Please accept my answer as a solution.



    Need Power BI consultation, hire me on UpWork .


    If the post helps please give a thumbs up



    If it solves your issue, please accept it as the solution to help the other members find it more quickly.




    Tharun



3 Replies

  • JeevanMallya 

    The code that you have given is DAX, not the m code in power query. To get you expected result, please try this code

    WORK_UNITS_COMPLETED = IF(Sprint_Master[SPRINT_REPORT_STATUS]="COMPLETED" && (Sprint_Master[ISSUE_TYPE_NAME]="Story" || Sprint_Master[ISSUE_TYPE_NAME]="Task" ) , CALCULATE(Count(Sprint_Master[ISSUE_KEY])))

     



    Need Power BI consultation, hire me on UpWork .


    If the post helps please give a thumbs up



    If it solves your issue, please accept it as the solution to help the other members find it more quickly.




    Tharun



      • tharunkumarRTK's avatar
        tharunkumarRTK
        Super User

        JeevanMallya 

        No problem, Please accept my answer as a solution.



        Need Power BI consultation, hire me on UpWork .


        If the post helps please give a thumbs up



        If it solves your issue, please accept it as the solution to help the other members find it more quickly.




        Tharun