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: 
Not applicable

Why Inline Concat load is not saving?

See below code:

I reload the dashboard with the below code. 

Save it, Close it, Reopen it

The Inline (0-DEMO SOLUTION PROVIDER) is not in the list of values for Solution Provider Name until I reload it again after I open.

Is this typical of inline loads?  The issue is that it is not showing up on the version on AccessPoint after the morning reload.

SupplierSelectionTable:

Load distinct [VAR Reporting Name] as [Solution Provider Name]

resident VAR;



Concatenate

LOAD * INLINE [

    Solution Provider Name

    0-DEMO SOLUTION PROVIDER

]
;

1 Solution

Accepted Solutions
Not applicable
Author

well, I figured it out!  Script fine!  Section Access was the issue.  Needed to add the value to the section access file. 🙂 

View solution in original post

4 Replies
shree909
Partner - Specialist II
Partner - Specialist II

try like this

SupplierSelectionTable:

Load distinct [VAR Reporting Name] as [Solution Provider Name]

resident VAR;



Concatenate(SupplierSelectionTable)



LOAD * INLINE [

    Solution Provider Name

    0-DEMO SOLUTION PROVIDER

]
;

concatenate is a type of appending the date to the , table u will concat..

MayilVahanan

HI

SupplierSelectionTable:

Load distinct [VAR Reporting Name] as [Solution Provider Name]

resident VAR;



Concatenate

(SupplierSelectionTable)



LOAD * INLINE [

    "Solution Provider Name"

    0-DEMO SOLUTION PROVIDER

]
;

Try like this

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Not applicable
Author

Thanks but still no luck.  I may have to load from a file instead.   i will test that and see if it works

Not applicable
Author

well, I figured it out!  Script fine!  Section Access was the issue.  Needed to add the value to the section access file. 🙂