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
Surya9
Helper V
Helper V

single value for repeating values in table

I have a table 
ID   Values
1      $
1      $
2      %
2      %

I want to create a measure to display (Group values based on id)
1    $
2    %

1 ACCEPTED SOLUTION

Hi, @Surya9 

Please try the below.

 

Amount Total with values =
VAR grouptable =
GROUPBY (
Amount,
Amount[id],
"@amounttotal", SUMX ( CURRENTGROUP (), Amount[amount] ),
"@value", MAXX ( CURRENTGROUP (), Amount[values] )
)
RETURN
CONCATENATEX ( grouptable, [@amounttotal] & [@value] )

 

 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

Linkedin: https://www.linkedin.com/in/jihwankim1975/

 

Picture6.png

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@Surya9 , if you use the ID in visual then it will.

ID and sum(Table[Value]) in visual that should work

 

I dont want to sum the value. I just want to create a measure to get what value id hold. and that i will use to concat in final o/p
table contains 
id   values   amount
1     $           500
1     $           250
2     %          10
2     %          20
I had created the measure for sum of amount. now i want final output like 
id   o/p
1    750$
2    30% 
like that

 

 

Hi, @Surya9 

Please try the below.

 

Amount Total with values =
VAR grouptable =
GROUPBY (
Amount,
Amount[id],
"@amounttotal", SUMX ( CURRENTGROUP (), Amount[amount] ),
"@value", MAXX ( CURRENTGROUP (), Amount[values] )
)
RETURN
CONCATENATEX ( grouptable, [@amounttotal] & [@value] )

 

 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

Linkedin: https://www.linkedin.com/in/jihwankim1975/

 

Picture6.png

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


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.