Hi I have used aggregation in Mongo similar to the one shown in the below link MongoDB Return the count of documents for each day for the last one month
I am getting the output as
/* 0 */    
{
    "result" : [ 
        {
            "_id" : "2014-03-17",   
            "count" : 1
        },   
        {
            "_id" : "2014-03-15",  
            "count" : 9
        }        
    ],  
    "ok" : 1  
} 
I need the result to be displayed in a table format so that I want to save this two columns in an excel sheet for future reference..
 
     
     
    