Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hello everybody,
Is it possible to move text in a text box like we see in new channels using qlikview?
can u suggest me alternatives to achieve the same if possible?
Thank you
Regards,
Prajna
To install Extension just copy it in one folder in server , Double click on extension automatically extension will install
and in server you need to select File -> New QVW -> Click on Web View Button ->
Right Click Mouse -> + New Sheet Objects -> Select Extensions -> You will find list of extension over there
This way extensions can be installed.
Vikas
yeah I followed same procedure infact I got the similar .qvw document and I tried but em not able to see extension object..may be this would clear what em saying

Hi Manish,
whenever user accessing the Dashboard from Web Browser Moving Text is working or not.Based on the below logic.
vTodayBanner = ='Welcome to QlikView Community'
Now use below expression in Text Box..
=left(vTodayBanner,mod(Round((now()-now(2))*100000),len(vTodayBanner)+1))
Hi,
I did it as below:
I have three expressions with text. chr(13) is used just to give space between the expressions.
Left('Total Ticket -'& TodaysTotalTKT & chr (13) &' Pending Ticket -' & TodaysPendingTKT & chr (13)&' Solved Ticket - ' & TodaysSolvedTKT,mod(round((now()-now(3))*100000),len(1000000000000000000000000000000000000000000000000000000000000000)))
This is old thread, you should open new thread. Anyway The field which you provide will return multi rows which Qlik doesn't know which value it does? Perhaps this
Left('Total Ticket -'& Concat(TodaysTotalTKT, ' ') & chr (13) &' Pending Ticket -' & Concat(TodaysPendingTKT, ' ') & chr (13)&' Solved Ticket - ' & Concat(TodaysSolvedTKT, ' '),mod(round((now()-now(3))*100000),len(1e20)))
len(1e20) doesn't work for my expression.
Thanks in advance
Should work, May be limitation problem till 1e18? can you try that using len(1e10)
If not working, Forgive me and use this?
Left('Total Ticket -'& Concat(TodaysTotalTKT, ' ') & chr (13) &' Pending Ticket -' & Concat(TodaysPendingTKT, ' ') & chr (13)&' Solved Ticket - ' & Concat(TodaysSolvedTKT, ' '),mod(round((now()-now(3))*100000),len(1000000000000000000000000000000000000000000000000000000000000000)))