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

split column values based on category

I have a column called Category which has values like: 'Refill On Time Percentage' and 'Refill Volume' and another column called  value which gives  values in decimal like 0.78  for Refill on Time Percentage and values like 11,409.00 when for Refill Volume. I want to create two measures. One which gives Refill Volume only and other which give Refill On Time Percentage in power BI.

I know in sql we usually do something like: 

select * from A where Category = 'Refill Volume'

Select * from A where Category = 'Refill On Time Percentage'

 

I am not sure how to do in power BI with measure. Could you please help me out? I am stuck here.

 

The screenshot of the data is attached below:

 

rocku2008_1985_0-1673293927906.png

 

2 ACCEPTED SOLUTIONS
Greg_Deckler
Super User
Super User

@rocku2008_1985 Try:

Measure 1 = SUMX(FILTER('Table',[Category] = "Refill On Time Percentage",[Value])

Measure 2 = SUMX(FILTER('Table',[Category] = "Refill Volume",[Value])

Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

2 REPLIES 2

@Greg_Deckler : Thank You!

Greg_Deckler
Super User
Super User

@rocku2008_1985 Try:

Measure 1 = SUMX(FILTER('Table',[Category] = "Refill On Time Percentage",[Value])

Measure 2 = SUMX(FILTER('Table',[Category] = "Refill Volume",[Value])

Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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