Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Please see attached for desired and current result I am getting when trying to show 0 for all dates with missing occurences for a specific site.
This is my current load script:
Noconcatenate
NewTable:
Load DateKey
Resident Calendar;
Left Join (NewTable)
Load
DateKey,
IF(LEN(Occurence)='-', 0, Occurence) AS OccurenceCount,
Site
Resident Table1;
This worked great! Would you please explain to me how this loop actually works? I am a SQL guy and fairly new to Qlik Sense. Also, how would I exclude existing dates with values as you said?
Thank you Vegar, is it "EXISTS" or "NOT EXISTS"?