Extracting data within Reporting Services
Hi all Looking for a little guidance on extracting data within my report. I have this string: 13:54Lab Waiting Roomand I want to strip the time out, I only want to see the data that is returned after each date. Any ideas? Thanks so much!!
May 6th, 2011 4:36pm

There is a space in there, it should be: 13:54 Lab Waiting Room...Thanks!
Free Windows Admin Tool Kit Click here and download it now
May 6th, 2011 4:41pm

Assuming that the time is always 5 followed by a space (6 total) =Right(<field name>, len(<field_name> ) - 6 ) or to be more techical =Mid(<field_name>, InStr(1,<filed_name>," ") + 1, Len(<field_name>) - InStr(1,<filed_name>, " ") )
May 6th, 2011 5:33pm

Assuming that the time is always 5 followed by a space (6 total) =Right(<field name>, len(<field_name> ) - 6 ) or to be more techical =Mid(<field_name>, InStr(1,<filed_name>," "), Len(<field_name> - (InStr(1,<filed_name>, " ")))
Free Windows Admin Tool Kit Click here and download it now
May 6th, 2011 5:34pm

JHab That is awesome, thanks sooo much!!!
May 6th, 2011 6:14pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics