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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
Anonymous
Not applicable

Count text values that start https://

Hi Experts

 

How would you amend the following measure to count items in a column that start https://

Website Visits =
VAR Result = COUNTROWS(FILTER(BIvw_ResponseTapCalls,
BIvw_ResponseTapCalls[crimson_talktime] >= 1 ))
RETURN
IF ( Result = BLANK (), 0, Result )
1 ACCEPTED SOLUTION
mahoneypat
Microsoft Employee
Microsoft Employee

Please try this expression

 

Website Visits =
VAR Result =
    COUNTROWS (
        FILTER (
            FILTER ( BIvw_ResponseTapCalls, BIvw_ResponseTapCalls[crimson_talktime] >= 1 ),
            LEFT ( BIvw_ResponseTapCalls[URLcolumn], 8 ) = "https://"
        )
    )
RETURN
    Result + 0

 

Pat

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

2 REPLIES 2
mahoneypat
Microsoft Employee
Microsoft Employee

Please try this expression

 

Website Visits =
VAR Result =
    COUNTROWS (
        FILTER (
            FILTER ( BIvw_ResponseTapCalls, BIvw_ResponseTapCalls[crimson_talktime] >= 1 ),
            LEFT ( BIvw_ResponseTapCalls[URLcolumn], 8 ) = "https://"
        )
    )
RETURN
    Result + 0

 

Pat

 





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Anonymous
Not applicable

Hi Pat - if i no longer needed the >1 filter step then

Website Visits =
VAR Result =
    COUNTROWS (
        FILTER (
              LEFT ( BIvw_ResponseTapCalls[URLcolumn], 8 ) = "https://"
        )
    )
RETURN
    Result + 0

 

Would be correct???

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

Check out the May 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

May 2025 Monthly Update

Fabric Community Update - May 2025

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