When I run the below script in Qlik Sense , I am facing issue that Data1 Table is loaded with Null rows. However When I run the same script in QlikView, The Data1 Table is loaded with Correct amount of rows.
trace '$(vCountryFilter)';
if '$(vCountryFilter)'='NewZealand' THEN LET vCountryFilter='New Zealand'; ENDIF;
if '$(vCountryFilter)'<>'SEA' THEN right keep (Data1) TEST: LOAD '$(vCountryFilter)' as COUNTRY, 1 as FlagTEST INLINE [ COUNTRY Dummy ]; ENDIF;