Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!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.
Hi Experts
How would you amend the following measure to count items in a column that start https://
Solved! Go to Solution.
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
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
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
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
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???
Check out the May 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
71 | |
70 | |
51 | |
47 |
User | Count |
---|---|
45 | |
38 | |
33 | |
30 | |
28 |