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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
sonam7
Employee
Employee

Indefinite

Hello everyone

I have the following table in Excel, I'm trying to do the same in PowerBI, but the result is not as expected.

I've created a measure for UnitsbyType

UnitsbyType á IF(MAX('MASCI vwEnvironments'[Type]) á "HC4",[Total Envs]*4,IF(MAX('MASCI vwEnvironments'[Type]) á "HC8", [Total Envs]*8,IF(MAX('MASCI vwEnvironments'[Type])'"HC12",[Total Envs]*12,IF(MAX('MASCI vwEnvironments'[Type]) á "HC16",[Total Envs]*16,[Total Envs]*1))))
TotalUnits.PNGAllocation Total.PNGAllocation%.PNG
Next I want to calculate total units as in Excel by adding UnitsByType for each branch, i.e. Prod, ASDB, ProdNext, etc. This is what I'm trying to do, but it doesn't give me the right value.
Total Units - SUMX(Summarize('MASCI vwEnvironments','MASCI vwEnvironments'[Branch]),[UnitbyType])
Can someone please help me with how I get these values in Excel?
Thank you
1 ACCEPTED SOLUTION
v-xicai
Community Support
Community Support

Hi @sonam7 ,

 

You may create a measure like DAX below .

 

 

Total Units=

VAR _table = SUMMARIZE( 'MASCI vwEnvironments', 'MASCI vwEnvironments'[Branch], "_Value", [UnitbyType])

RETURN

IF(HASONEVALUE('MASCI vwEnvironments'[Branch]), [UnitbyType], SUMX(_table,[_Value]))

 

 

Best Regards,

Amy 

 

Community Support Team _ Amy

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-xicai
Community Support
Community Support

Hi @sonam7 ,

 

You may create a measure like DAX below .

 

 

Total Units=

VAR _table = SUMMARIZE( 'MASCI vwEnvironments', 'MASCI vwEnvironments'[Branch], "_Value", [UnitbyType])

RETURN

IF(HASONEVALUE('MASCI vwEnvironments'[Branch]), [UnitbyType], SUMX(_table,[_Value]))

 

 

Best Regards,

Amy 

 

Community Support Team _ Amy

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

Assume your measure is M1 and group by is type, try like

sumx(summarize(Table,Table[Type],"_1", [M1]),[_1])

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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