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

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
sguenther
Advocate II
Advocate II

R Script not working as expected

Hi all,

 

I'm faced with the following problem:

I have a list of website pages, which I would like to group in different content groups based on regex matching. The only way to set this up in the Query Editor is via an R Script. This is how I set it up:

 

 

# 'dataset' holds the input data for this script
filter <- "(www\\.simscale\\.com\\/|www\\.simscale\\.com\\.googleweblight\\.com\\/)blog\\/(.*)"

# Define Functions
checkComp <- function(f) {grepl(f , as.character(dataset$"Initial Landing Page"), ignore.case=TRUE)}

returnComp <- function() {
	if (checkComp(filter)) {
		result <- "Blog"
	} else {
		result <- "Other"
	}
        return(result)
}

output <- within(dataset,{"Test"=returnComp()})

 

dataset$"Initial Landing Page" is the column that contains the page URL.

 

The problem is that the returnComp() function always returns "Other". I tried everything. Testing this function in an online R tester works as expected. Just in PowerBI it doesn't work. There seems to be an issue when I pass the column to the function. But I don't know what else to try.

 

The column containsthe URLs in plain text, like this: https://www.simscale.com/blog/2016/11/learn-finite-element-analysis-fea/

1 REPLY 1
v-chuncz-msft
Community Support
Community Support

@sguenther,

 

Add a custom function and invoke it for each row.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.