We can make use of variables and calculations in set modifiers. The following recipe explains the syntax for using variables for comparison in sets and how to effectively use the = sign in the dollar sign expansions.
Using the = sign with variables in Set Analysis
Getting ready
For the purpose of this recipe, we will be using an inline data load that contains shipment details for each customer. Load the following script in the Qlik Sense Data load editor. Make sure that the last record in this script has the Month set to the current month and the DeliveryDate set to today's date:
Let vToday=Today ();
Sales:
LOAD DATE(Date#(DeliveryDate,'DD/MM/YYYY')) AS DeliveryDate,
DATE(Date#(ShipmentDate,'DD/MM/YYYY&apos...