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: 
Anil_Babu_Samineni

Date Format

Hello,

I have the format MM/DD/YYYY HH:MM:SS and i am trying to MM/DD/YYYY

I don't know why this is showing.

I tried like below

date(date#(First_StartTime,'MM/DD/YYYY HH:MM:SS'),'MM/DD/YYYY')

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
18 Replies
Anil_Babu_Samineni
Author

Capture.PNG

Yes, Thanks Sunny. 10 also need to show different like blue then yellow? I am about to finish this

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
sunny_talwar

Try this:

=If([Dashboard Running] = Max(TOTAL Aggr(Count(DISTINCT Dashboard), First_StartTime)), LightRed(),

If([Dashboard Running] = Max(TOTAL Aggr(Count(DISTINCT Dashboard), First_StartTime), 2), Green(),

If([Dashboard Running] = Max(TOTAL Aggr(Count(DISTINCT Dashboard), First_StartTime), 3), Blue(), Yellow())))


Capture.PNG

Anil_Babu_Samineni
Author

interesting, Thanks.

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
Anil_Babu_Samineni
Author

Sunny, I have one more doubt.

Can you please have a look which i attached below.

Here, what i want to achieve is From sheet3 I have values for 19/07/2016 are 102

But, While i am trying Sheet2 Bar graph Why this is showing 128 for 19/07/2016. Can you please suggest me?

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
sunny_talwar

Because the Sheet3 expression seems to be distinct values per dimension. To get 102 on the chart, try this:

=Sum(Aggr([count of select], Dashboard))

or

=Sum(Aggr(Only([count of select]), Dashboard))

or

=Sum(Aggr(Avg([count of select]), Dashboard))

or

=Sum(Aggr(Sum(DISTINCT [count of select]), Dashboard))


Capture.PNG

Anil_Babu_Samineni
Author

Yes, here why not showing values by date wise. And, I've tried that. Unfortunately, the dates are not showing good way. How to figure it out.

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
sunny_talwar

Looking to get this?

Capture.PNG

Expression:

=Sum(Aggr([count of select], Dashboard, TaskRunDates))

Anil_Babu_Samineni
Author

Thanks for your time.

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
sunny_talwar

No problem at all Anil. I just recommend to start a new thread with new requirement in the future.

Thanks,

Sunny