@@ -252,12 +252,12 @@ tools.Summarize = function () {
252252 } ) ;
253253
254254 instance . AggFunctions = ko . observableArray ( [
255- { id : 1 , text : "Number of Rows" } ,
256- { id : 2 , text : "Total" } ,
257- { id : 3 , text : "Minimum" } ,
258- { id : 4 , text : "Maximum" } ,
259- { id : 5 , text : "Average" } ,
260- { id : 6 , text : "Median" }
255+ { id : 1 , text : "Number of Rows" , requiresNumeric : false } ,
256+ { id : 2 , text : "Total" , requiresNumeric : true } ,
257+ { id : 3 , text : "Minimum" , requiresNumeric : true } ,
258+ { id : 4 , text : "Maximum" , requiresNumeric : true } ,
259+ { id : 5 , text : "Average" , requiresNumeric : true } ,
260+ { id : 6 , text : "Median" , requiresNumeric : true }
261261 ] ) ;
262262
263263 instance . DateFunctions = ko . observableArray ( [
@@ -267,7 +267,7 @@ tools.Summarize = function () {
267267 ] ) ;
268268
269269 instance . MaxInputs = 1 ;
270- instance . HelpUrl = "http://querytreeapp.com/help/tools/summarize /" ;
270+ instance . HelpUrl = "http://querytreeapp.com/help/tools/statistics /" ;
271271
272272 return instance ;
273273} ;
0 commit comments