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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

hi

hi

Labels (1)
8 Replies
Not applicable
Author

hi

stigchel
Partner - Master
Partner - Master

In QlikView most things are case sensitive, so I think the correct answer is:

Hi

Not applicable
Author

you always need to close things off, so maybe the answer is:

Bye!

stigchel
Partner - Master
Partner - Master

jonathandienst
Partner - Champion III
Partner - Champion III

I think it would more correct to use this:

=If(Above(Entry) = 'Hi', 'Bye!')

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

Or maybe

=If(Upper(Above(Entry)) = 'HI', 'Bye!')

just in case of those pesky people not using capitals

Not applicable
Author

HI function is not available. Are you looking for a function to extract most significant (high- order) portion of integer class value? 

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Alternately, if you would like this to be a script result, try:

VeryRawData:

LOAD * INLINE [

RecNr, Message

1,     Hi

2,     Bye!

];

Express:

LOAD RecNr, MsgBox(Message, 'Meeting Nr. ' & RecNr) AS Result

RESIDENT VeryRawData;

EXIT Script;

As an added bonus, there's a little bit of interaction as well...

P.