Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
rajveersinghsisodiya
Contributor III
Contributor III

Please Help Me

hi i need to create some table or chart like specified below:- 

Field NAmeAvgStdev
Name_of_field_110.22.5
Name_of_field_215.764.6
Name_of_field_316.565.6

all this feilds are from one table. 

14 Replies
alexandros17
Partner - Champion III
Partner - Champion III

So use field name as dimension and two expressions:

avg(myValue)

stDev(myValue)

rajveersinghsisodiya
Contributor III
Contributor III
Author

thanku so much Gysbert Wassenaar

it working.

rajveersinghsisodiya
Contributor III
Contributor III
Author

hi Gysbert Wassenaar one more problem in this table, only one field should be seen  when it get selected from list box.

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

If you have a listbox with field names then you either have or can create a field with the field names. You can use that field, e.g. FieldNames, as dimension and change the expression to

pick(match(FieldNames, $(=Concat(chr(39) & '[' & FieldNames & ']' &  chr(39) ,','))),

$(=concat( 'avg('[' & FieldNames & '])', ','))

)


talk is cheap, supply exceeds demand
rajveersinghsisodiya
Contributor III
Contributor III
Author

hi Gysbert Wassenaar its not working.

i will explain the scenario. i have one list box in that values are

  • Name_of_field1
  • Name_of_field2
  • Name_of_field3

and i have one table in that i need to show Avg and Stdev of one  selected value from above list box.