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
walnei
Helper III
Helper III

MIN/MAX EDITOR QUERY

I need to create two columns in the query editor, one that brings the minimum time and one that brings the maximum time of each category. According to print. I need to do this in the query editor. M. I know I could do it in DAX but it does not answer me. Can you help me?

 

Sem título.png

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Ok, you can do this in DAX also, which is dynamic and faster.Select New Table under Modelling tab and use this formula :

 

Newtable = GROUPBY('Table_1','Table_1'[Category],"Max_Time_NewColumn",MAXX(CURRENTGROUP(),'Table_1'[Time] ), "Min_Time_New_Column", MINX(CURRENTGROUP(),'Table_1[Time]))

 

This will gie you the max and min values for each category and most importantly without duplicating your data.

 

Thanks
Raj

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Hi

 

Kind Request : If you post the data in Editable( should be able to do copy/paste)  instead of posting the snapshot of data, that will help the members to help you 🙂

 

1. Duplicate your source table in Query Editor and do Group by "Category" for Max of Time as shown below:Max.PNG

 

 

2. The above step will produce a table with max /min of time for each category.

3. Now, Go to the  original table and do "Merge" with the new Grouped table based on "Category".

4. Expand the merged column and retain the Max & min of time column, you will get the desired output.

 

 

Thanks
Raj

@Anonymous

 

My data has more than 20 million rows, so duplicating and doing merge would be difficult.

Anonymous
Not applicable

Ok, you can do this in DAX also, which is dynamic and faster.Select New Table under Modelling tab and use this formula :

 

Newtable = GROUPBY('Table_1','Table_1'[Category],"Max_Time_NewColumn",MAXX(CURRENTGROUP(),'Table_1'[Time] ), "Min_Time_New_Column", MINX(CURRENTGROUP(),'Table_1[Time]))

 

This will gie you the max and min values for each category and most importantly without duplicating your data.

 

Thanks
Raj

I had done it that way, but I'm having trouble when I add the hours as the print example. Because it does not add more than 24h. In red it's the reSem título2.pngsult I'm getting. But it should be the right green.

Anonymous
Not applicable

The solution which i posted covers the original topic only as the "Total" part was not listed in the original post.

Yes, it really solves the initial. You're right.

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.