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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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])
) )

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.