Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
any body tell me what is the error in the script
qlikview saying syntax error
A:
load * Inline[tableA_id,tableA_itemID,tableA_namedesc
1,1,skdfl
2,1,sdfkls
3,1,jjjjjjjjjj
4,2,dkfdls
5,2,sdkf
6,3,sdfkls
7,3,jjjjjjjjjj
8,3,dkfdls
9,3,sdkf
10,4,sdfsd
];
qlikview erro
Syntax error, missing/misplaced FROM:
A:
load * Inline[tableA_id,tableA_itemID,tableA_namedesc
1,1,skdfl
2,1,sdfkls
3,1,jjjjjjjjjj
4,2,dkfdls
5,2,sdkf
6,3,sdfkls
7,3,jjjjjjjjjj
8,3,dkfdls
9,3,sdkf
10,4,sdfsd
]
A:
load * Inline[tableA_id,tableA_itemID,tableA_namedesc
1,1,skdfl
2,1,sdfkls
3,1,jjjjjjjjjj
4,2,dkfdls
5,2,sdkf
6,3,sdfkls
7,3,jjjjjjjjjj
8,3,dkfdls
9,3,sdkf
10,4,sdfsd
]
I think its correct ....... try to make inline table again.
because what is seen here is appropriate. Chek that there is space between
INLINE and "["
inline will appeare blue then its fi9.
Hi,
Try this
A:
load * Inline [
tableA_id,tableA_itemID,tableA_namedesc
1,1,skdfl
2,1,sdfkls
3,1,jjjjjjjjjj
4,2,dkfdls
5,2,sdkf
6,3,sdfkls
7,3,jjjjjjjjjj
8,3,dkfdls
9,3,sdkf
10,4,sdfsd
];
I believe you missed a space between INLINE and [.
Thanks & Best Regards,
Kuldeep Tak
I think its correct ....... try to make inline table again.
because what is seen here is appropriate. Chek that there is space between
INLINE and "["
inline will appeare blue then its fi9.
greate!!!
A:
Load * Inline [tableA_id,tableA_itemID,tableA_namedesc
1,1,skdfl
2,1,sdfkls
3,1,jjjjjjjjjj
4,2,dkfdls
5,2,sdkf
6,3,sdfkls
7,3,jjjjjjjjjj
8,3,dkfdls
9,3,sdkf
10,4,sdfsd
]
You have to provide space between INLINE and [.. Hope this works.I also had same issue adn solved.