Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
abanar
Helper II
Helper II

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 2
v-cgao-msft
Community Support
Community Support

Hi @abanar ,

 

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

amitchandak
Super User
Super User

@abanar , 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])
) )

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.