Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
hpayne93
Frequent Visitor

SUMX, and filter where 2 different columns containstring

Hi,
 
I need to calculate the total number of website log ins by adding the number of 'GA4 Sessions'[data.event_count] where the [pagetitle] contains "login" OR the [event_name] contains "login".
 
Can you tell me where I'm going wrong? 
 
Thanks!
 
 
Logins = SUMX(
    FILTER(
        'GA4 Sessions',
        CONTAINSSTRING('GA4 Sessions'[data.event_name], "login") || CONTAINSSTRING('GA4 Sessions'[data.pagetitle], "login",
'GA4 Sessions'[data.event_count]))))
1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

HI @hpayne93,

It seems like you missed the right brackets of the second CONTAINSSTRING function, you can try to use following measure formula if helps:

Logins =
SUMX (
    FILTER (
        'GA4 Sessions',
        CONTAINSSTRING ( 'GA4 Sessions'[data.event_name], "login" )
            || CONTAINSSTRING ( 'GA4 Sessions'[data.pagetitle], "login" )
    ),
    'GA4 Sessions'[data.event_count]
)

In addition, if you are check different fields with the same conditions at the same time, you can try or concatenate them and search the concatenate strings:

Logins =
SUMX (
    FILTER (
        'GA4 Sessions',
        SEARCH ( "login", [data.event_name] & "," & [data.paetitle], 1 ) > 0
    ),
    'GA4 Sessions'[data.event_count]
)

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
v-shex-msft
Community Support
Community Support

HI @hpayne93,

It seems like you missed the right brackets of the second CONTAINSSTRING function, you can try to use following measure formula if helps:

Logins =
SUMX (
    FILTER (
        'GA4 Sessions',
        CONTAINSSTRING ( 'GA4 Sessions'[data.event_name], "login" )
            || CONTAINSSTRING ( 'GA4 Sessions'[data.pagetitle], "login" )
    ),
    'GA4 Sessions'[data.event_count]
)

In addition, if you are check different fields with the same conditions at the same time, you can try or concatenate them and search the concatenate strings:

Logins =
SUMX (
    FILTER (
        'GA4 Sessions',
        SEARCH ( "login", [data.event_name] & "," & [data.paetitle], 1 ) > 0
    ),
    'GA4 Sessions'[data.event_count]
)

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Great - worked perfectly. Thanks for your help!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.