- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Calculate Difference Platform by Row Using Formula
Hi, I need to calculate this table data with the formula. This is the formula and table. K is a number of platforms. Initial Estimate Mean(𝜃^) = 98.93455. I will use the value failure rate from TEP-A and TEP-B then need to minus Initial Estimate Mean(𝜃^).
Formula = Σ((n/τ)-𝜃^)^2 /(k-1)
Platform(k) Total Failures(n) Service Time(τ) Failure Rate
TEP-A 7 0.07884 88.78
TEP-B 6 0.05256 114.15
Total 13 0.1314 98.93
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@Anonymous
Measure =
VAR estimateMean_ = 98.93455
VAR K_ =
DISTINCTCOUNT ( Table1[Platform(k)] )
RETURN
SUMX (
Table1,
POWER (
( ( Table1[Total Failures(n)] / Table1[Service Time(τ)] ) - estimateMean_ ),
2
) / ( K_ - 1 )
)
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@Anonymous
Measure =
VAR estimateMean_ = 98.93455
VAR K_ =
DISTINCTCOUNT ( Table1[Platform(k)] )
RETURN
SUMX (
Table1,
POWER (
( ( Table1[Total Failures(n)] / Table1[Service Time(τ)] ) - estimateMean_ ),
2
) / ( K_ - 1 )
)
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @Anonymous
Not clear. What is the Σ indexing over?
Please show the expected result, explaining the steps in the formula.
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content


Helpful resources
Join us at the Microsoft Fabric Community Conference
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Power BI Monthly Update - February 2025
Check out the February 2025 Power BI update to learn about new features.

Subject | Author | Posted | |
---|---|---|---|
03-13-2024 07:54 AM | |||
04-25-2024 08:47 AM | |||
06-17-2024 01:42 PM | |||
08-30-2023 02:39 PM | |||
02-09-2023 01:52 PM |
User | Count |
---|---|
26 | |
25 | |
24 | |
13 | |
10 |
User | Count |
---|---|
24 | |
21 | |
18 | |
17 | |
10 |