Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello there!
I have the following issue. I want to recreate this logic into Qlik sense, but without success. What I want is for every combination of ga,download_date to order the results of these 3 different columns DESC to basically see which ga has the earliest download_date with that combination.
The code:
Hi @Stanislav1
Autonumber should work, But I would remove the &' _'& stuff.
I would just add a order By on the table:
ORDER BY gclid_exists DESC, bing_exists DESC, referrer_exists DESC
Check out this post.
So the load would look something like this
Load
Field,
Field1,
Field2,
Field3
Autonumber(ga, download_date) as Row
From xxxxx
Order by gclid_exists DESC, bing_exists DESC, referrer_exists DESC;
Regards - Jandre
Mark the solution as accepted that solved your problem and if you found it useful, press the like button! Check out my YouTube Channel | Follow me on LinkedIn
Hi @Stanislav1
Autonumber should work, But I would remove the &' _'& stuff.
I would just add a order By on the table:
ORDER BY gclid_exists DESC, bing_exists DESC, referrer_exists DESC
Check out this post.
So the load would look something like this
Load
Field,
Field1,
Field2,
Field3
Autonumber(ga, download_date) as Row
From xxxxx
Order by gclid_exists DESC, bing_exists DESC, referrer_exists DESC;
Regards - Jandre
Mark the solution as accepted that solved your problem and if you found it useful, press the like button! Check out my YouTube Channel | Follow me on LinkedIn
Thank you very much, Jandre