Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I am trying to do groupby()'s, and after do a "summarize" column, but currentgroup() doesn't work, otherwise if I use sumx() it works perfectly.
testTable = GROUPBY('tbl',Date[Year],Date[Month],'OS'[request.so],"X",PERCENTILEX.INC(CURRENTGROUP(),'tbl'[business_pause_duration],0.5))
Ps.: I can't use summarize because it are Table linked by relationships
Hi @Bidu
Whether you use GROUPBY or SUMMARIZE, you should be able to use ADDCOLUMNS to add a column computing the percentile (which will iterate over rows of Sales corresponding to each group).
Either of these should work:
testTable =
ADDCOLUMNS (
GROUPBY (
'tbl',
Date[Year],
Date[Month],
'OS'[request.so]
),
"X",
CALCULATE (
PERCENTILEX.INC (
Sales,
'tbl'[business_pause_duration],
0.5
)
)
)
testTable =
ADDCOLUMNS (
SUMMARIZE (
'tbl',
Date[Year],
Date[Month],
'OS'[request.so]
),
"X",
CALCULATE (
PERCENTILEX.INC (
Sales,
'tbl'[business_pause_duration],
0.5
)
)
)
It wasn't clear from your description why you can't use SUMMARIZE.
If needed, could you provide more detail on your data model and some sample data and expected outputs?
Regards
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
21 | |
20 | |
19 | |
13 | |
12 |
User | Count |
---|---|
41 | |
27 | |
23 | |
22 | |
22 |