Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how i can mearg tow colum on one ?

Status
Not open for further replies.

diefalla5

Programmer
Feb 9, 2005
3
EG
hi dear,
i'am using report 6i and i development new report
but i want to mearg tow colum on one
tow field are the same data..
thanks alot?
EX:
Name Std Std Std
1 1010 1010 1012
2 1050 1060 1060
------------------------------------* i want to show as
Name Std Std Std
1 1010 1012
2 1050 1060

please help me ! thanks for all
if it's impossibal let me know. !!
 
Put extra field between those you want to merge, like this
Code:
----------   -------------    -------------
|  F_1   |   |  F_MIDDLE |    |    F_2    |
----------   -------------    -------------
Source F_1 field with field1, F_MIDDLE also source with field1, and F_2 source with field2.
Now, in the format triggers of F_1 and F_2 use
Code:
if :field1=:field2 then
return false;
else
return true;
end if;
In the format trigger of F_MIDDLE use
Code:
if :field1<>:field2 then
return false;
else
return true;
end if;
 
Dear Thanks,
but this report created as matrex
so i cann't know next fieled data ..
So if u help me to know the contain of next fieled
please let me know ?
thanks.
-------------------------------
name std id ....
F_1 F_1 F_1 F_1
 
In matrix report it will not be possible to place a new field between two columnsms.
 
Thanks
i will change my reprot to Letter...
thanks alot nagornyi
and thanks for all
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top