Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
manoranjan_d
Specialist
Specialist

Data view should be in good in QVD

hi my qvd shows the data which is not in proper alignments , so when i call the qvd  in to table in design i m facing below issue.

example:

output is

  issue:

Namedeptcollarearoll numname2dept
manojitxxxIndia1
sivacsexxxAmerica2
rajuitxxxIndia3
aruncsexxxAmerica4
vishalitxxxIndia5
yasocsexxxAmerica6
manoj2nd year
siva3rd year
raju4th year
arun5 year
vishal6 year
yaso7 year

actuall output should has to be below :

 

Namedeptcollarearoll numname2dept
manojitxxxIndia1manoj2nd year
sivacsexxxAmerica2siva3rd year
rajuitxxxIndia3raju4th year
aruncsexxxAmerica4arun5 year
vishalitxxxIndia5vishal6 year
yasocsexxxAmerica6yaso7 year
8 Replies
manoranjan_d
Specialist
Specialist
Author

when import the qvd any thing can be done?

manoranjan_d
Specialist
Specialist
Author

no reply for this

manoranjan_d
Specialist
Specialist
Author

22 pepole view but no reply

Clever_Anjos
Employee
Employee

Would you mind sharing your script?

Anonymous
Not applicable

Share the script, how you get that qvd?

manoranjan_d
Specialist
Specialist
Author

the actual requirement if Name is matching to name2 and dept not matching to dept1 means

it should show the name dept coll, area roll num,name2, dept1


file1:

load

Name,

dept,

coll,

area,

roll num,

name2,

dept1

from(xxxx)

where Exists(name2,Name)and not Exists(dept1,dept) ;

store into qvd

so above code will display name2 and dept1 as blank. to get the value of name2 and dept1 again i m doing the same step but changed the field of exists and not exists

file1:

load

Name,

dept,

coll,

area,

roll num,

name2,

dept1

from(xxxx)

where Exists(Name,name2)and not Exists(dept,dept1) ;

store into qvd


above code will display the value of name2 and dept1 so remaining field will be blank.


and then what i doing is


concanate both the qvd to get the exact output but the output shows the  separated lines as

 

Namedeptcollarearoll numname2dept
manojitxxxIndia1
sivacsexxxAmerica2
rajuitxxxIndia3
aruncsexxxAmerica4
vishalitxxxIndia5
yasocsexxxAmerica6
manoj2nd year
siva3rd year
raju4th year
arun5 year
vishal6 year
yaso7 year



so i need the exact outout as:


 

Namedeptcollarearoll numname2dept
manojitxxxIndia1manoj2nd year
sivacsexxxAmerica2siva3rd year
rajuitxxxIndia3raju4th year
aruncsexxxAmerica4arun5 year
vishalitxxxIndia5vishal6 year
yasocsexxxAmerica6yaso7 year


manoranjan_d
Specialist
Specialist
Author

i shared

Clever_Anjos
Employee
Employee

Please attach the real script...