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

The Fabric community is upgrading! Read all of the details including the timeline and what you can expect. Learn more

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
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.