I've converted an SSRS report from SQL to FETCHXML that was used by on-premises CRM 2011.
Now the report is using CRM 2013 as the data source.
In the old version of this report we had this expression:
=String.Format(New System.Globalization.CultureInfo(1033), chrw(123)&"0"&chrw(125)&" "&chrw(40)&"Count"&chrw(58)&" "&chrw(123)&"1"&chrw(125)&chrw(41), IIf(IsNothing(Fields!stepname.Value), "Not specified", Fields!stepname.Value), CInt(Count("")).ToString(First(Fields!NumberFormat_0_Precision.Value, "DSNumberAndCurrencyInfo"), Code.GetCultureInfo()))
The following will return the number of rows in the current group; however, when connecting to a CRM online instance (FetchXML), this will not work:
CInt(Count("")
How can this be accomplished through an expression that is compatible with a FetchXML report?