Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
samp1
Contributor II
Contributor II

Qlik SaaS "Always One selected value" is not working after publish, any help?

Qlik SaaS "Always One selected value" is not working, but it was ok before Apr/2022, is it due to new changes?

Labels (2)
1 Solution

Accepted Solutions
samp1
Contributor II
Contributor II
Author

I found the solution,  it was date field Loading from Snowflake into QVD.

first I created the same field using an Inline statement with sample values and then concatenate it to  my final table, final it was working.

Ex:

Main:
lOAD * Inline [
Command Run Date
04/01/2022
04/18/2022
];

Concatenate(Main)
Load
Date("Command Run Date",'MM/DD/YYYY') as "Command Run Date",
"Value"
From [$(vConnectionQVD)Myfact.qvd](qvd)
;

View solution in original post

1 Reply
samp1
Contributor II
Contributor II
Author

I found the solution,  it was date field Loading from Snowflake into QVD.

first I created the same field using an Inline statement with sample values and then concatenate it to  my final table, final it was working.

Ex:

Main:
lOAD * Inline [
Command Run Date
04/01/2022
04/18/2022
];

Concatenate(Main)
Load
Date("Command Run Date",'MM/DD/YYYY') as "Command Run Date",
"Value"
From [$(vConnectionQVD)Myfact.qvd](qvd)
;