Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
tan_chungkam
Creator
Creator

Always show the latest Rate

Hi all,

I have a excel table as below:

TableTable

I would like to do in scripting level to always show it's latest exchange rate.

Please find below as my expected outcome:

Expected OutcomeExpected Outcome

Labels (1)
2 Replies
Channa
Specialist III
Specialist III

select Year,Month,exchangeRate from table.xls

where year=max(year) and month=max(Month)

Channa
tan_chungkam
Creator
Creator
Author

Hi,

Thanks for the advice.

However it does not work.