The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Good day.
I am trying to get the standard deviation (SD) and average (AVE) of the following data:
LOGIN DATE - Copy
| Count
|
I am trying to get SD and AVE for each month. I tried using
Solved! Go to Solution.
Hi @j4ymastah
You can add a YearMonth column in your data model. Then you can achieve your goal by measure or calculate funtion in Table visual directly.
Add a YearMonth column.
YearMonth = FORMAT('Table'[LOGIN DATE - Copy],"YYYYMM")
Measure:
SD Per Month = CALCULATE(STDEV.P('Table'[Count]),FILTER(ALL('Table'),'Table'[YearMonth]=MAX('Table'[YearMonth])))
AVG Per Month = CALCULATE(AVERAGE('Table'[Count]),FILTER(ALL('Table'),'Table'[YearMonth]=MAX('Table'[YearMonth])))
Or use Average/Standard Deviation function in table visual.
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
And that fixes it! Many thanks, @Anonymous
Hi @j4ymastah
You can add a YearMonth column in your data model. Then you can achieve your goal by measure or calculate funtion in Table visual directly.
Add a YearMonth column.
YearMonth = FORMAT('Table'[LOGIN DATE - Copy],"YYYYMM")
Measure:
SD Per Month = CALCULATE(STDEV.P('Table'[Count]),FILTER(ALL('Table'),'Table'[YearMonth]=MAX('Table'[YearMonth])))
AVG Per Month = CALCULATE(AVERAGE('Table'[Count]),FILTER(ALL('Table'),'Table'[YearMonth]=MAX('Table'[YearMonth])))
Or use Average/Standard Deviation function in table visual.
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
5 | |
5 | |
2 | |
2 | |
2 |
User | Count |
---|---|
10 | |
7 | |
4 | |
4 | |
4 |