Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Moving text

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

16 Replies
vikasmahajan

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

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
Not applicable
Author

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

Capture.PNG.png

Not applicable
Author

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))

Anonymous
Not applicable
Author

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)))


Anil_Babu_Samineni

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)))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable
Author

len(1e20) doesn't work for my expression.


Thanks in advance

Anil_Babu_Samineni

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)))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful