Forum Discussion
Giada_Togliatti
5 years agoPost Patron
tooltip in calendar custom visual
Hi, I have a bci calendar custom visual, I have a date column, a letter column and a measure that is count(letter). Each day I have the quantity of the letters present. I need to see on tooltip the...
- 5 years ago
Hey Giada_Togliatti ,
create a 2nd measure that creates a string, that concatenates the available letters like so:
m2 = CONCATENATEX( VALUES('Foglio1'[letter]) , 'Foglio1'[letter] , "," )Hopefully, this provides what you are looking for. If not create a pbix file that contains sample data, but still reflects your data model. Upload the pbix to onedrive or dropbox and share the link.
Regards,
Tom
TomMartens
5 years agoSuper User
Hey Giada_Togliatti ,
create a 2nd measure that creates a string, that concatenates the available letters like so:
m2 =
CONCATENATEX(
VALUES('Foglio1'[letter])
, 'Foglio1'[letter]
, ","
)
Hopefully, this provides what you are looking for. If not create a pbix file that contains sample data, but still reflects your data model. Upload the pbix to onedrive or dropbox and share the link.
Regards,
Tom
- Giada_Togliatti5 years agoPost Patron
It's perfect, thank you!