|
Re: How to do this in crystal report [message #295666 is a reply to message #295648] |
Wed, 23 January 2008 01:02 |
mshrkshl
Messages: 247 Registered: September 2006 Location: New Delhi
|
Senior Member |
|
|
As i think this procedure will be helpful to you.
declare
n1 number :=10;
n2 number;
n3 varchar2(20);
begin
for n2 in 1..n1
loop
select to_char(to_date(n2,'J'), 'JSP') into n3 from dual;
dbms_output.put_line(n3);
end loop;
end;
/
output
ONE
TWO
THREE
FOUR
FIVE
SIX
SEVEN
EIGHT
NINE
TEN
|
|
|
|
Re: How to do this in crystal report [message #295722 is a reply to message #295648] |
Wed, 23 January 2008 03:18 |
kdastageer
Messages: 28 Registered: January 2006 Location: Qatar
|
Junior Member |
|
|
Hi,
I will make clear of my question.
StringVar Array x:=["One","Two","Three"];(in crystal report formula)
Output should be:
One
Two
Three
Some idea's like..
For i:=1 to 2 do
(
x[i]=i+1;
)
something like this...
by
DAS
|
|
|