I'm using CR2011 with a SQL Server database as my data source. I am trying to create a Top 10 report based on completed taxi orders by street. I was able to create a formula which extracts the street name:
Mid ({CompletedOrders.Address1},InStr ({CompletedOrders.Address1}," ") )
but I am getting an error message (Start position is less than 1 and not an integer) when attempting to group on my formula. What formula can I use to parse the street name and then group on the name so I can do order counts??
Mid ({CompletedOrders.Address1},InStr ({CompletedOrders.Address1}," ") )
but I am getting an error message (Start position is less than 1 and not an integer) when attempting to group on my formula. What formula can I use to parse the street name and then group on the name so I can do order counts??