Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I am trying to figure out the best way to go about trimming a column, but only when it meets a certain criteria. And leave the Urls as they are that don't meet the criteria.
I want to rollup all the Urls that contain '/dispatch/calendar/daily/xxxx-xx-xx' into one row in the Report view '/dispatch/calendar/daily/' to get a better sense of how often the daily calendar is used and not the individual days
Solved! Go to Solution.
Create this calculated column and use it in your visual (use your table name instead of Table1):
sUrl Trimmed =
IF (
CONTAINSSTRING ( Table1[sUrl], "/dispatch/calendar/daily/" ),
"/dispatch/calendar/daily/",
Table1[sUrl]
)
Proud to be a Super User!
Glad to hear that works. I recommend the SWITCH function for nesting:
sUrl Trimmed =
SWITCH (
TRUE,
CONTAINSSTRING ( Table1[sUrl], "/dispatch/calendar/daily/" ), "/dispatch/calendar/daily/",
CONTAINSSTRING ( Table1[sUrl], "/marketing/keyword/" ), "enter text here",
Table1[sUrl]
)
Proud to be a Super User!
Create this calculated column and use it in your visual (use your table name instead of Table1):
sUrl Trimmed =
IF (
CONTAINSSTRING ( Table1[sUrl], "/dispatch/calendar/daily/" ),
"/dispatch/calendar/daily/",
Table1[sUrl]
)
Proud to be a Super User!
Absolutely wonderful ty so much.... works like a charm.... Also one follow up, I assume it would work if I used it in a nested query too.. if I had other url's that needed a trim like say "marketing/keyword/"
Glad to hear that works. I recommend the SWITCH function for nesting:
sUrl Trimmed =
SWITCH (
TRUE,
CONTAINSSTRING ( Table1[sUrl], "/dispatch/calendar/daily/" ), "/dispatch/calendar/daily/",
CONTAINSSTRING ( Table1[sUrl], "/marketing/keyword/" ), "enter text here",
Table1[sUrl]
)
Proud to be a Super User!
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 50 | |
| 49 | |
| 35 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |