Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
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
@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])
) )
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 30 | |
| 28 |
| User | Count |
|---|---|
| 128 | |
| 88 | |
| 79 | |
| 67 | |
| 62 |