Forum Discussion
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
- amitchandakSuper User
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])
) ) - AnonymousNot 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 TeamIf 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