Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
mokitsu61
Creator
Creator

QvdCreateTime($(variable)) doesn't work

Hi,

QvdCreateTime('c:\path...') works fine.

But

Set variable = 'c:\path...';

LET isExists = QvdCreateTime($(variable));            doesn't work. Why?

1 Solution

Accepted Solutions
Colin-Albert

The variable needs to be within single quotes.

LET isExists = QvdCreateTime('$(variable)');

View solution in original post

5 Replies
jaumecf23
Creator III
Creator III

Try this:

let vtest = QvdCreateTime(variable);

Colin-Albert

The variable needs to be within single quotes.

LET isExists = QvdCreateTime('$(variable)');

arvind1494
Specialist
Specialist

Use let instead of let

then you will able to perform this.

mokitsu61
Creator
Creator
Author

Thank you for your replying.

Your comment is correct too. But using '$' mark is more useful in my case.

Thank you.

mokitsu61
Creator
Creator
Author

Your comment fixed my trouble, thank you.

I couldn't wonder such a way by myself ...