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
Anonymous
Not applicable

Get the value from Column

HI All,

 

i need the vaue which is repeating in the column.

 

Ex: from the below example Using DAX need to get the Value "5" for 2019 and Value "10" for 2018

 

image.png

 

Please let me know if you need more details on this.

 

REgards.

 

1 ACCEPTED SOLUTION

Hi @Anonymous 

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski

Please see the attached file

 

 

 

 

View solution in original post

7 REPLIES 7
AlB
Super User
Super User

Hi @Anonymous 

If I understand correctly you want the value with the highest number of appearances. If so,

1. Place Table1[Year] in the rows of a table visual

2. Place this measure in the visual:

Measure =
VAR AuxTable_ =
    ADDCOLUMNS (
        DISTINCT ( Table1[Value] ),
        "CountCol", CALCULATE ( COUNT ( Table1[Value] ) )
    )
VAR MaxAppearances_ =
    MAXX ( AuxTable_, [CountCol] )
RETURN
    SUMX ( AuxTable_, IF ( [CountCol] = MaxAppearances_, [Value], 0 ) )

 

Please mark the question solved when we get to the solution and consider kudoing if posts are helpful.

Cheers  Datanaut

   

Anonymous
Not applicable

Thanks. Year is alfready in Rows, could not follow, it will be great if you could share the Pbix fie,

 

REgards,

Hi @Anonymous 

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski

Please see the attached file

 

 

 

 

Thanks for the tip @Mariusz !

Mariusz
Community Champion
Community Champion

Hi @jmuniz,

 

No problem! 

 

Best Regards,
Mariusz

Please feel free to connect with me.
Mariusz Repczynski

 

Mariusz
Community Champion
Community Champion

HI @Anonymous 

 

The column will be this.

Column = CALCULATE( MAX( 'Table'[Value] ), ALLEXCEPT( 'Table', 'Table'[Year] ) ) 

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski

 

Mariusz
Community Champion
Community Champion

Hi @Anonymous 

 

Try this Measure

Max Value = MAX( 'Table'[Value] )

image.png

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski

 

 

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.