In crystal 9, is there any way to create a function which receives the column name as the argument and returns the column name instead of the column value?
e.g. MyFunction({Employees.Employee_Lastname}) returns 'Employee_Lastname' instead of 'smith'
I'm trying to create a custom function which accepts any field name and returns a tagged XML string using the field name as the tag
e.g. <Employee_Lastname>Smith</Employee_Lastname>
e.g. MyFunction({Employees.Employee_Lastname}) returns 'Employee_Lastname' instead of 'smith'
I'm trying to create a custom function which accepts any field name and returns a tagged XML string using the field name as the tag
e.g. <Employee_Lastname>Smith</Employee_Lastname>