Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Constant Column for Table Based on Measure

Hello! I am trying to create a table below in Direct Query mode and am struggling with the last step. I am trying to count the number of items in a table based on status and want to have another column (Count 2) with constant value based on the 'Status' column.

 

I have tried CALCULATE(SUM(Table[Qty]), FILTER(ALL(Table), Table[Status] = "A")) and a few other variations but the rows in Status B and C are always 0.

 

Can someone please help on this?

 

StatusCount 1Count 2
ACount number items with Status ACount number items with Status A
BCount number of items with Status BCount number of items with Status A
CCount number of items with Status C Count number of items with Status A

 

  • FreemanZ's avatar
    FreemanZ
    3 years ago

    you mean with measure? you can try to create with two measures with such code:

        Count1 = CALCULATE( COUNTROWS( TableName ) ),

        Count2 = CALCULATE( COUNTROWS( TableName ), TableName[Status] = "A" )
     
    try to plot a Table Visual, with Status column and the two measures.

8 Replies

  • what do you mean by "constant value based on the 'Status' column."?

    • Anonymous's avatar
      Anonymous
      Not applicable

      I mean achieving what I'd shown in 'Count 2' column. I need the rows to ignore the row context of 'Status' column except for Status A

      • FreemanZ's avatar
        FreemanZ
        Icon for Super User rankSuper User

        aha, then try to create a new table with the code below:

         
        Table =
        ADDCOLUMNS(
            VALUES( TableName[Status] ),
            "Count1",
            CALCULATE( COUNTROWS( TableName ) ),
            "Count2"
            CALCULATE( COUNTROWS( TableName ), TableName[Status] = "A" )
        )
  • Do you need the FILTER statement for something? Try removing it and seeing what the output is.
    The current problem is the rows of the table already apply a filter that you won't see in the DAX formula. So in the row with status B, your formula will calculate no values with status = A. Not sure if that made sense, but I hope it helps.

    • Anonymous's avatar
      Anonymous
      Not applicable

      Yes, I am trying to calculate values with Status = A for rows with Status = B and Status = C too. If I just use ALL(Table), I will sum up all the statuses which is not what I am looking for.