Forum Discussion
Calculate daily average per host per day from hourly data
Hi All,
I am new to power BI and new to the report development as well, with almost no knowledge in design.
I have hourly CPU usage data , as attached , for multiple servers .
i want to calculate Daily Average per server and then based on daily average i want to divide them into 3 buckets red(more than 80 average) , yellow(60-80) and green(0-60)
- Anonymous2 years ago
Hi riteshsharma25 ,
According to your statement, I think you may want to calculate the sum of [avg_cpu_pct] by hostname and then mark them into 3 buckets with following logic: red(more than 80 average) , yellow(60-80) and green(0-60).
Buckets = VAR SUM_AVG = CALCULATE(SUM('Table'[avg_cpu_pct])) RETURN SWITCH(TRUE(), SUM_AVG<=60,"Green",SUM_AVG>60 && SUM_AVG<=80,"Yellow","Red")Result in my sample is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
1 Reply
- AnonymousNot applicable
Hi riteshsharma25 ,
According to your statement, I think you may want to calculate the sum of [avg_cpu_pct] by hostname and then mark them into 3 buckets with following logic: red(more than 80 average) , yellow(60-80) and green(0-60).
Buckets = VAR SUM_AVG = CALCULATE(SUM('Table'[avg_cpu_pct])) RETURN SWITCH(TRUE(), SUM_AVG<=60,"Green",SUM_AVG>60 && SUM_AVG<=80,"Yellow","Red")Result in my sample is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.