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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Trabka
Frequent Visitor

Can I pass a reference to a custom column creation

Hi there, sorry just one more thing.

 

I am trying to pass w parameter or refernce for creating custom table. Is it possible ?

 

Ua case:

 

From previous problem which I had I am able to find the column Header name which I want to pass to the Next Custom Column Condition.

 

By Passing the Coulmn header name which is recivied by the function I need to make a math function over the data from this colum.

 

Initally I wanted to use a Query :

 

= let
Source = @#"Table",
ColumnName = #"Dynamic_ColumnName",
#"Added Conditional Column" = Table.AddColumn(Source, "Test Score", each if ColumnName <> "" then ColumnName/12 else null)
in
#"Added Conditional Column"

 

 

but I see in the reference there is only Column Header Name provided instead values so I'm getting error:

 

We cannot apply operator / to types Text and Number

 

Any suggestions ? Thank you.

1 REPLY 1
jbwtp
Memorable Member
Memorable Member

Hi @Trabka,

 

The ColumnName in your code seems to be type text not type number. Use something like Number.From(ColumnName)/12 to fix it.

 

Cheers,

John

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.