Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
l_denivelle
Creator
Creator

Get a varchar field from table

Hi

I have a table which gives me the last refresh dates of data.

I just want to put in a textbox a text like :

="Last refresh on " & MyVariable

My table looks like that :

I want MyVariable to contain the DATE_VALUE where DATE_MNEMONIC=DATE_EXTRACT_OPTIFORM.

How can I do this ?

Thanks

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

t1.png

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

6 Replies
senpradip007
Specialist III
Specialist III

Do you want ="Last refresh on " & ReloadTime()

l_denivelle
Creator
Creator
Author

No

I need the DATE_VALUE from my Table when DATE_MNEMONIC = "DATE_EXTRACT_OPTIFORM"

Because refresh of my data depending on an extraction from a system.

The data do not depend on the application reload.

SreeniJD
Specialist
Specialist

Hi

Use set analysis and filter the data as required...

DATE_MNEMONIC = "DATE_EXTRACT_OPTIFORM


HTH,

Sreeni



jonathandienst
Partner - Champion III
Partner - Champion III

=Date(Only({<DATE_MNEMONIC = {'DATE_EXTRACT_OPTIFORM'}>} DATE_VALUE))

or

=Date(Max({<DATE_MNEMONIC = {'DATE_EXTRACT_OPTIFORM'}>} DATE_VALUE))

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
jonathandienst
Partner - Champion III
Partner - Champion III

t1.png

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
l_denivelle
Creator
Creator
Author

Thank you, it works.

I didn't know the "only" function !