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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
grsmith
Frequent Visitor

Transform Columns using Dynamic List

Hi there; I've been banging my head against this for a while:

 

I am trying to multiply all value columns in my table by -1.  The number of value columns can vary - and I generate a list of column names (NewFieldNames).

 

I am trying to use the Table.TransformColumns method as below:

 

= Table.TransformColumns(Source, each {NewFieldNames,  each _* -1 , type number})

 

I get the error:

  Expression.Error: We cannot convert a value of type Function to type List.
  Details:
  Value=Function
  Type=Type

 

Any ideas on getting this to work?

1 ACCEPTED SOLUTION

Hi grsmith,

 

Based on your description, you want to multiply all value in your table with -1, right?

You can use R Script below instead:

# 'dataset' holds the input data for this script

len_row <- nrow(dataset)

len_column <- ncol(dataset)

for (i in 1:len_row)

{

    for (j in 1:len_column)

    {

         dataset[i, j] = dataset[i, j] * -1

    }

}

result <- dataset

 

And please refer to Run R scripts in Power BI Desktop.

 

Regards,

Jimmy Tao

View solution in original post

3 REPLIES 3
Greg_Deckler
Super User
Super User

Maybe:

 

= Table.TransformColumns(Source, each {NewFieldNames(),  each _* -1 , type number})

Assuming that function returns a list.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Thanks for the message Greg; unfortunately this doesn't solve the issue - I get the same error as previous.

 

A bit more experimenting overnight and the below works for the first column (i.e. the first item in the list NewFieldNames):

 

= Table.TransformColumns(#"Multiplied Column1", {NewFieldNames{0} , each _ * -1, type number})

 

I understand that the TransformColumns method requires the second parameter to be all functions, so I'm not sure why the above works as it only returns the first string for the first column - i.e. not a function.

 

I need this to iterate through each list item (i.e. all field names), and apply the transformation (* -1) to each line in the data for that field.  I just don't know how that syntax is written.

 

 

 

Hi grsmith,

 

Based on your description, you want to multiply all value in your table with -1, right?

You can use R Script below instead:

# 'dataset' holds the input data for this script

len_row <- nrow(dataset)

len_column <- ncol(dataset)

for (i in 1:len_row)

{

    for (j in 1:len_column)

    {

         dataset[i, j] = dataset[i, j] * -1

    }

}

result <- dataset

 

And please refer to Run R scripts in Power BI Desktop.

 

Regards,

Jimmy Tao

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.