Forum Discussion

s--turn's avatar
s--turn
Helper II
1 year ago
Solved

Concatenated tooltip - on a bubble plot (or anywhere)

Hello,   I have followed the instructions here to create a concatenated tooltip.  However, it doesn't work as expected on a bubble plot (and, actually, when I check it in a matrix, it also doesn't ...
  • MFelix's avatar
    MFelix
    1 year ago

    Try this new code:

     

    Emails included =
    VAR _Emai1sInPeriodPerContact =
        SUMMARIZE (
            'Emai1s and Contacts',
            'Emails and Contacts '[contactid],
            'Emails and Contacts '[blc_subject],
            "How Many Emails", SUM ( 'Emai1s and Contacts'[Was Delivered] )
        )
    
    VAR 
    RETURN
        CONCATENEX (
            SUMMARIZE(
             FILTER (
                _Emai1sInPeriodPerContact,
                [How Many Emails] = 'Number of Emails'[Number of Emails Value]
            ), 'Emails and Contacts '[blc_subject])
              ,
            'Emails and Contacts '[blc_subject],
            ", "
        )