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
THENNA_41
Post Partisan
Post Partisan

split column value based on another column

i have two column 

 

PR Compliance

 

PR                         PR DATA

Within                      4

Over                         2

Over                         2

Within                      4

Within                      4

 

 

i am trying split  value avergat  based PR value i  have used following measure 

PR Compliance -over val =
CALCULATE(
AVERAGE('PR Details'[PR ]),
'PR Details'[PR]="Within"
)
 
i am getting Error  "The function AVERAGE cannot work with values of type String." any 
1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@THENNA_41 Try

PR Compliance -over val =
CALCULATE(
AVERAGE('PR Details'[PR DATA]),
'PR Details'[PR]="Within"
)

@ 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

5 REPLIES 5
Tanushree_Kapse
Impactful Individual
Impactful Individual

Hi @THENNA_41 ,

Tanushree_Kapse_0-1629980731654.png

 

 

 

Mark this as a solution, if I answered your question. Kudos are always appreciated.

Thanks

 

goncalogeraldes
Super User
Super User

PR Compliance -over val =
CALCULATE(
AVERAGE(VALUE('PR Details'[PR ])),
'PR Details'[PR]="Within"
)
 
Hope this answer solves your problem! If you need any additional help please tag me in your reply.
If my reply provided you with a solution, pleased mark it as a solution ✔️ or give it a kudoe 👍
Thanks!

Best regards,
Gonçalo Geraldes

@goncalogeraldes 

 

Month        PODetails

May            over

May            over

May            within

May            over

June            within

June          within

June           over            

July            within

 

My percentage  want month wise 

 

Month       Over          within           Grand Total 

May            75%         25%                  100%

June            25%         75%                  100%

 

 

any idea month wise percentage ? thanks in advance

Greg_Deckler
Super User
Super User

@THENNA_41 Try

PR Compliance -over val =
CALCULATE(
AVERAGE('PR Details'[PR DATA]),
'PR Details'[PR]="Within"
)

@ 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...

@Greg_Deckler   i have month wise text count value like 

 

Month        PODetails

May            over

May            over

May            within

May            over

June            within

June          within

June           over            

July            within

 

My percentage  want month wise 

 

Month       Over          within           Grand Total 

May            75%         25%                  100%

June            25%         75%                  100%

 

 

any idea month wise percentage ? thanks in advance

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.

Top Solution Authors