March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
My rows are categories, and has a lower heirchy for customers in those categories.
My first question is, how can I make a formula to do what "count of acctnumber" is doing? I basically put AcctNumber is my values and changed it to count. I need to have an average cost per category by doing Total Cost/Customer count. I'm not sure if Total Cost/Count of AccNumber will give me what I need.
My second question is for LOS. For some reason, when there is one customer is the category, it gives me the right total LOS, but when there's alot of customers, like the one that has 4 (it should be 56+42+38+etc), is not giving me the right thing.
This is my formula for LOS
Any advice? Thanks
Solved! Go to Solution.
Hi @Reagorn ,
Based on your description, I have created a simple sample:
Please try:
Average cost = [Total Cost]/COUNT(Query1[AcctNumber])
LOS =
var CurrentName = SELECTCOLUMNS('Query1',"Name",[AcctNumber])
var _Table = SUMMARIZE(FILTER(ALL(Query1),[AcctNumber] in CurrentName),Query1[AcctNumber],"Value",MAX('Query1'[LOS_Days]))
Return SUMX(_Table,[Value])
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Reagorn ,
Based on your description, I have created a simple sample:
Please try:
Average cost = [Total Cost]/COUNT(Query1[AcctNumber])
LOS =
var CurrentName = SELECTCOLUMNS('Query1',"Name",[AcctNumber])
var _Table = SUMMARIZE(FILTER(ALL(Query1),[AcctNumber] in CurrentName),Query1[AcctNumber],"Value",MAX('Query1'[LOS_Days]))
Return SUMX(_Table,[Value])
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |