Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago

Calculated Column Divide by filtered SUMX

Dear All,

 

I need some help regarding a calculated column.

My code doesn't working but I don't know how can I fix it.

 

DIVIDE(
        Table1[Duration],  
		CALCULATE(
			SUMX(Table1, Table1[Duration]),
			Table1[CompanyName]="Comp_1",
			Table1[CompanyName]="Comp_2",
			Table1[CompanyName]="Comp_3",
			Table1[CompanyName]="Comp_4"
			)
		)

 

If I put the column to a matrix it shows error because the vizualization is empty.

 

Thank you in advance.

2 Replies

  • Anonymous , Try a measure like

     

    DIVIDE(
    Sum(Table1[Duration]),
    CALCULATE(
    SUMX(Table1, Table1[Duration]),
    Table1[CompanyName]="Comp_1",
    Table1[CompanyName]="Comp_2",
    Table1[CompanyName]="Comp_3",
    Table1[CompanyName]="Comp_4"
    )
    )

    or



    DIVIDE(
    Sum(Table1[Duration]),
    CALCULATE(
    SUMX(Filter( Table1,Table1[CompanyName] in {"Comp_1","Comp_2","Comp_3","Comp_4"}) Table1[Duration])
    ) )

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Anonymous ,

     

    Has this question been solved? If amitchandak's answer is helpful, please consider marking his answer as a solution, which will help more people find the answer faster. If the problem is not resolved, please consider publishing some sample data. Thanks in advance!

     

    Best Regards,
    Gao

    Community Support Team

     

    If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

    How to get your questions answered quickly -- How to provide sample data