Hi Momochi,
You can try to write code functions to convert digital formats.
Please follow this:
1.In Design view, right-click the design surface outside the border of the report and click Report Properties.
2.Add code, like this:
Public Shared Function Arabic(input As String) As String
Dim result As String = input
result = result.Replace(“1”, “?”)
result = result.Replace(“2”, “?”)
result = result.Replace(“3”, “?”)
result = result.Replace(“4”, “?”)
result = result.Replace(“5”, “?”)
result = result.Replace(“6”, “?”)
result = result.Replace(“7”, “?”)
result = result.Replace(“8”, “?”)
result = result.Replace(“9”, “?”)
result = result.Replace(“0”, “?”)
Return result
End Function
3.Go to Particular Field(text box) in report design and right click the text box,modify the Value property to use the following expression.


4.After that,deploy report and build project,then you can see the changes in the Report at Front end.
