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
nsbars_rt
Advocate I
Advocate I

Grouping with condition

Hello

Please advise. Simple situation but I got stuck.

I have a table that looks like that:

s1.jpg

I need to group it by name, take min(OnDate)

and (here is the question) take the Department which was when date = min(OnDate)

If I do like:

testTable = SUMMARIZE('Table';'Table'[Name];"minDate";min('Table'[OnDate]);"minDept";min('Table'[Department]))
I get 
Grocery Department in grouping
which isn't what I want.
 
1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Hi @nsbars_rt ,

 

You can try to create a new calculated column using the if statement.

Column = 
VAR min_date = CALCULATE(MIN('TABLE'[ondate]),ALLEXCEPT('TABLE','TABLE'[name]))
return IF('TABLE'[ondate]=min_date,1)

You can filter on the table chart or create a new calculated table.

test_min_date.PNG

Table 2 = SELECTCOLUMNS(FILTER('TABLE','TABLE'[Column]=1),"name",'TABLE'[name],"ondate",'TABLE'[ondate],"department",'TABLE'[department])

test_min_date_2.PNG

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
V-lianl-msft
Community Support
Community Support

Hi @nsbars_rt ,

 

You can try to create a new calculated column using the if statement.

Column = 
VAR min_date = CALCULATE(MIN('TABLE'[ondate]),ALLEXCEPT('TABLE','TABLE'[name]))
return IF('TABLE'[ondate]=min_date,1)

You can filter on the table chart or create a new calculated table.

test_min_date.PNG

Table 2 = SELECTCOLUMNS(FILTER('TABLE','TABLE'[Column]=1),"name",'TABLE'[name],"ondate",'TABLE'[ondate],"department",'TABLE'[department])

test_min_date_2.PNG

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@nsbars_rt, Try lastnonblankvalue

https://docs.microsoft.com/en-us/dax/lastnonblankvalue-function-dax

 

lastnonblankvalue(Table[date],min(table[Department]))

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.