This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowThe Fabric community is upgrading! Read all of the details including the timeline and what you can expect. Learn more
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???
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 20 | |
| 20 |