Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Issue with inline table

I am trying to create an inline table to hold some dimensions. When running the script I have getting an error which says that there is a missing FROM statement, but the table is being created inline without the need for any external data.

If anyone else has had this issue before please let me know if/how you were able to solve it.

Many thanks,

T.

1 Solution

Accepted Solutions
tresesco
MVP
MVP

One common tempting error: No space between 'Inline' and '['. Check that.

So try like:

Load * inline [ ..          // space after 'inline'

View solution in original post

5 Replies
PrashantSangle

Hi,

Share your script ..

basic syntax is

Load * INLINE [

FieldName

value1,

value2

]

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Anonymous
Not applicable
Author

Paste your script here, that would help us to identify the issue....

sunny_talwar

I guess it would be difficult to say what might be causing the error without looking at your code for the inline table. Can you share the script for the Inline table?

tresesco
MVP
MVP

One common tempting error: No space between 'Inline' and '['. Check that.

So try like:

Load * inline [ ..          // space after 'inline'

Not applicable
Author

Tresesco,

This was it!! I feel stupid for not seeing that, but I assumed that the syntax highlighter would point it out. Not much point in having a button for a syntax checker if it doesn't work!!!

Thanks,

T