This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.
Hi All,
Am running ssrs 2008 r2 report.
I have one database field Employee ID which has data like 1, 2, 3, 4,.....10,11,...100(max)
I need to display the above data in 3 digit format for ex., 001, 002, ....,010, 011,....099, 100
Any idea?
Thanks,
Hi Mahendra,
That works.
But I got it working using below exp.
=Right(
"00" & Fields!EmployeeID.Value,3)