Hello,
I have a table pulling data from a stored procedure, but due to the way the database was set up, some of the strings were cut off. I cannot change the structure of the database, so I was wondering if it was possible to add the part of the string cut off in the [=Fields.whatever] part of the cell.
Here's a simplified example of what I mean....
The table was created like this:
And data inserted:
My stored procedure calls 'thing' and 'color', but the "yello" is missing its w. When I get to the Telerik Report table, is there something similar to an if statement function where, if the string = 'yello', then display 'yellow', that I can add to my [=Fields.color] box?
I have a table pulling data from a stored procedure, but due to the way the database was set up, some of the strings were cut off. I cannot change the structure of the database, so I was wondering if it was possible to add the part of the string cut off in the [=Fields.whatever] part of the cell.
Here's a simplified example of what I mean....
The table was created like this:
CREATE TABLE ThingColor(id int PRIMARY KEY,thing varchar(20),color varchar(5))And data inserted:
INSERT INTO ThingColorVALUES (1, 'sky', 'blue'), (2, 'sun', 'yello');My stored procedure calls 'thing' and 'color', but the "yello" is missing its w. When I get to the Telerik Report table, is there something similar to an if statement function where, if the string = 'yello', then display 'yellow', that I can add to my [=Fields.color] box?