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
Anonymous
Not applicable

Expression Error: The Type specified wasn't recognized. Dataflow Cust Function

Good Day, I created a function in PBI Desktop Query Editor. and it works fine to process the files. Then I copied this function in a Dataflow which was okay. but when I invoke the function in the dataflow to add a New column, and pass the required input which is binary content; I get this error. I tried googling but couldn;t find anything useful. 
Would really appreciate if anyone can advise how to fix this.

KD_PBI_DA100_0-1659619752930.png

 

1 ACCEPTED SOLUTION

try without the "as table"  part

 

(Filebinary) =>

View solution in original post

4 REPLIES 4
lbendlin
Super User
Super User

what type did you specify?  Please show the relevant bits of your Power Query code.

Anonymous
Not applicable

Hi, here's the power query code:

(Filebinary as binary) as table=>

let
Source = Excel.Workbook(Filebinary),

#"Cost_Sheet" = Source{[Item="Cost Info",Kind="Sheet"]}[Data],

#"Removed Top Rows" = Table.Skip(#"Cash_Sheet",91),

#"Removed Other Columns" = Table.SelectColumns(#"Removed Top Rows",{"Column2", "Column3", "Column4", "Column5", "Column6", "Column7"}),

#"Kept Range of Rows" = Table.Range(#"Removed Other Columns",0,3),

#"Promoted Headers" = Table.PromoteHeaders(#"Kept Range of Rows", [PromoteAllScalars=true]),

in
#"Promoted Headers"

 

try without the "as table"  part

 

(Filebinary) =>

Anonymous
Not applicable

many thanks @lbendlin The trick worked in Dataflow. 

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.

Top Solution Authors