Hi all,
How can i merge two different rows in to one.
Ex: i have two rows with
1. germany
2. France
I want to merge them with there values and make one
Europe.
is it possible to do can u please help me out...
Thanks in advance
mansoor
Hi,
How about a query calculation:
if ([Country] in ('Germany','France')) then ('Europe') else ([Country])
Regards,
MF.