Forum Discussion
MIN/MAX EDITOR QUERY
- Anonymous8 years ago
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
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:
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.
- Anonymous8 years agoNot 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- walnei8 years ago
Helper III
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 result I'm getting. But it should be the right green.
- Anonymous8 years agoNot applicable
The solution which i posted covers the original topic only as the "Total" part was not listed in the original post.