Viewing 5 posts - 1 through 5 (of 5 total)
Yes, I don't have any nulls on those fields. It's datetime value.
September 7, 2013 at 1:12 am
Cell value missing on some rows, I haven't put any condition on text box. SP used for this report has data on these cells, but in report showing as empty...
September 6, 2013 at 6:36 am
Try this code
declare @table1 TABLE
(
col1 int,
col2 char(2),
col3 char(2)
)
insert into @table1 values(1,'_A','11')
insert into @table1 values(2,'_B','12')
insert into @table1 values(3,'_C','12')
insert into @table1 values(4,'_A','11')
declare @table2 TABLE
(
id char(2),
val char(2)
)
insert into @table2 values('_A','A')
insert into @table2 values('_B','B')
insert...
June 17, 2013 at 6:05 am
Hi syedathariqbal,
Thanks for your suggestion, the issue was resolved long back. It was raised due to space problem, increasing legend width and height solved the issue.
April 29, 2013 at 3:51 am
Thanks, It's worked.
April 7, 2013 at 9:53 pm
Viewing 5 posts - 1 through 5 (of 5 total)