Sometimes when you load data into QlikView you find you are missing some value of field but these values are required to populate the chart. Also you need some dummy data(avg figure) for missing values.

JoinPeekTable1.pngIt could be like in the table to the right where you have three dates, each with some kind of conversion rate. The table only contains the dates where the conversion rate changed, not the dates between the changes.

However, the user will want to ask the question: “What was the status on this specific day?” In other words, the user wants to be able to click on a reference date to see the number that is associated with this date – but the date might not exist in the source data.

In such a situation, you need to generate the missing dates between the changes as individual records and use the “Rate” value from the previous date.

There are several ways to do this in QlikView, and all of them involve some script programming, using temporary tables. One algorithm is

  1. Load the source table containing the rates (below called “Rates”).
  2. Find largest and smallest date in the “Rates” table.
  3. Generate all dates between the largest and smallest dates (below called “Dates”)..
  4. Join the “Dates” table (outer join) onto the “Rates” table.
  5. Sort the resulting table according to date.
  6. Propagate the value of “Rate” downwards to all records that have NULL in the “Rate” field, using the Peek() function.

Visually, the join and peek steps of the algorithm look like this:

JoinPeekProcess100.png

In the QlikView script, the algorithm would look like the following:

     TempTable_Rates:      Load DateRate From Rates ;

     MinMaxDate:     Load Min(Dateas MinDateMax(Dateas MaxDate resident TempTable_Rates;     Let vMinDate Peek('MinDate',-1,'MinMaxDate') - 1;     Let vMaxDate Peek('MaxDate',-1,'MinMaxDate')    ;

     Join (TempTable_Rates)
     Load Date(recno()+$(vMinDate)as Date Autogenerate vMaxDate vMinDate;

     Rates:
     NoConcatenate Load Date
          IfIsNullRate ), PeekRate ), Rate as Rate          Resident TempTable_Rates          Order By Date /* so that above values can be propagated downwards */

     Drop Table MinMaxDate, TempTable_Rates;