#6 Load script progress with Emojis in Qlik Sense

🎮 Playing with Emoji in Qlik ❤️
In a previous post, I showed you how to make a progress bar during load script https://bit.ly/2UQnV8P

Thanks to Arturo Muñoz and his last article at https://lnkd.in/d_fQnEH, I've improve it !

My script :

For i = 0 to NoRows
// Launch the Rocket
let Percent = num(round(i/NoRows,0.01),'0%');
let vBefore = Repeat(' ',round(i/NoRows*10)-1);
let vAfter = Repeat(' ',10-round(i/NoRows*10));

TRACE 🌎$(vBefore)🚀$(vAfter)🌜;

😂 ok it's useless 😂

DQC6.gif