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
SNik
Helper I
Helper I

DAX SUM OF COUNT

Hi

I have a question, i have ...

 

Date                  Name     Colour     Value

2016-01-01      A             R               100

2016-01-01      B             G               100

2016-01-02      A             B               200

2016-01-02      C             R               200

2016-01-03      B             B               300

and so on

 

I need a DAX to return me the mentioned per month

2016-01-02      A             B               200

2016-01-02      C             R               200

2016-01-03      B             B               300

 

I need the last date grouped by name in DAX

Thanks

 

 

Sincerely
Nik- Shahriar Nikkhah
1 REPLY 1
NikhilChenna
Continued Contributor
Continued Contributor

Hi @SNik ,

 

I think the above is possible by using creating a new summarize table, go to modelling tab and click on new table option.

 

Summarized_table5 =
SUMMARIZE(
'Table (5)',
'Table (5)'[Name],
"Max Color",MAX('Table (5)'[Color]),
"Max Value",MAX('Table (5)'[Value] ))
 
This will solve you issue.
 
Regards,
Nikhil Chenna
 
Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!

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