Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi i need to create some table or chart like specified below:-
Field NAme | Avg | Stdev |
---|---|---|
Name_of_field_1 | 10.2 | 2.5 |
Name_of_field_2 | 15.76 | 4.6 |
Name_of_field_3 | 16.56 | 5.6 |
all this feilds are from one table.
Create a calculated dimension:
and two expressions:
Do u have avg and stDev available or u want to calculate it.
What is the problem you are facing in creating above table
Load
[Field Name],
stdev(myField) as StandardDeviation ,
avg((myField) as average
from abc.xlsx group by [Field Name];
let me know
If u have already calculated then simply u can use table box
Hi Rajveer,
Use Straight table Chart, in dimension give your field name and in expression write Avg(filed name)
and add second expression , definition as Stdev(filed name)
Create a calculated dimension:
and two expressions:
it not calculated i need to calculte it.
data is already loaded and i need to calculate it with writing expressions.
Can you please post your qvw file
use straight table
Dimension - FieldName
Expression - Avg(Field)
Expression2-stdev(Field)