Split expression is used to extract the part of a string that is divided by a character.
Expression:
=Split(Fields!EmployeeName.Value.ToString(),“|”).GetValue(0).ToString()
This expression is used to extract the first part of a string that was divided by “|” characters. For example, if the EmployeeName field contained “Atul Yadav|Manager”, this expression would just return “Atul Yadav”
Need help? Connect Atul
Latest posts by Atul Yadav (see all)
- D365 Data entitiy Insert method COC - October 30, 2024
- D365 Joins - October 16, 2024
- D365 Find method and Exist method - October 9, 2024