Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
abeyphilip
Creator II
Creator II

Relative Path in Inline Load

Hi,

Is there a way to use relative path in an Inline load statement?

eg- In a Bundle Info load while giving the absolute path it works fine.

Bundle Info LOAD * INLINE [
label, Image

aaa, c:\path1\path2\abc.jpg

bbb, c:\path1\path2\efg.jpg

];

But the below with relative path does not:

Bundle Info LOAD * INLINE [
label, Image

aaa, ..\path2\abc.jpg

bbb, ..\path2\efg.jpg

];

I have my App in c:\path1\path3.

Thanks,

Abey

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

Are you getting any error? It should work. Check if your paths are correct. Or may be try like

Bundle Info Load * INLINE [

Label, Image

aaa, ..\abc.jpg

bbb, ..\efg.jpg

];

View solution in original post

3 Replies
vishsaggi
Champion III
Champion III

Are you getting any error? It should work. Check if your paths are correct. Or may be try like

Bundle Info Load * INLINE [

Label, Image

aaa, ..\abc.jpg

bbb, ..\efg.jpg

];

abeyphilip
Creator II
Creator II
Author

Thanks Vishwarath.

Path was the problem, wrongly assumed the path was correct.

Thanks,

Abey

vishsaggi
Champion III
Champion III

Cool.