Home > Blockchain >  Qlikview - show min and max date from date listbox
Qlikview - show min and max date from date listbox

Time:02-11

I have ListBox with value day(Date) and shows results:

1 2 3 4 5 6 7

I want when select number from 2 to 5 in table get result

Date from       Date To
02-02-2022      05-02-2022

Can anyone help me please, how to show first and last selected value from list box?

CodePudding user response:

You could do it in 2 text boxes of the form

='Date from'&chr(15)&
  date(min(Date),'DD-MM-YYYY')

chr(15) is to create a new line. Just switch out the min() for max() as needed

  • Related