Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
yanivvl0
Creator III
Creator III

How to show on pop-up lable the current date of calculate-dimension with dates interval ?

hi everybody,

Further to previous discussion, it can be seen in https://community.qlik.com/thread/208591?sr=inbox ,

i need to show on pop-up lable the Date of measurement for each project. because each project starts in different date and and the calculate-dimension Presents the interval of day between the start date and the Date of measurement It's a bit problematic ,

here is the wanted result where the start date of project 102 is 1/1/2015 :

intervals wanted popup.PNG

thanks.

1 Solution

Accepted Solutions
tresesco
MVP
MVP

May be like attached?

Untitled.png

View solution in original post

9 Replies
Chanty4u
MVP
MVP

did u try with

=Chr(13)'& ur date field '&

yanivvl0
Creator III
Creator III
Author

hi Chanty , its not a display problem.

"Date" is not a measure or a dimension , we have to bring it somehow - and this is the tricky part of the question .

all the issu began in the previous discussion.  shortly :

i have projects dimension and a calculated-dimension interval  : floor(ProjectDate-RegistrationDate) and measure count(RegistrationId)  - thats what u see in the Higher image. what i dont have is the date : ProjectDate+interval days.  - thats what i need to show.

if some things are not clear i can explain more, thanks.

Kushal_Chawda

You can create the custom pop up labels

Define Your Pop-Ups

tresesco
MVP
MVP

May be like attached?

Untitled.png

Kushal_Chawda

In your case custom pop up expression would be

='Projects=' & Project & chr(10) &

  'Interval=' & floor(ProjectDate-RegistrationDate) & chr(10) &

  'Count =' & count(RegistrationId) & chr(10) &

  'Date =' & Date(ProjectDate+floor(ProjectDate-RegistrationDate))

yanivvl0
Creator III
Creator III
Author

hi tresesco , exactly what i need !!   great answer - THANKS .

yanivvl0
Creator III
Creator III
Author

HI  Kush  - thanks !

yanivvl0
Creator III
Creator III
Author

Hi again ,do you have any idea why it is not work on LineChar ?   ( on BarChart ITS ok ) .

yanivvl0
Creator III
Creator III
Author

Hi again ,do you have any idea why it is not work on LineChar ?   ( on BarChart ITS ok ) .