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
BishwaR
Helper V
Helper V

Conditional column with different datatype

I am creating a conditional column on numeric  column but the out with a String.

 

If  Numeric Column A is < 0 then output N/A.

 

When I tried it it creates the column but then while saving the query it return error datatype mismatch

 

Please help

 

Thanks

 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

In the formula bar, type:

 

= Table.AddColumn(NameOfPriorStep, each if [Column A] < 0 then "N/A" else [Column A], type text)

 

--Nate

View solution in original post

3 REPLIES 3
v-yingjl
Community Support
Community Support

Hi @BishwaR ,

You can create the custom column like this:

 

= Table.AddColumn(#"Changed Type", "Custom", each if [Column1] < 0 then "N/A" else [Column1])

 

The default data type of this column would be 'Any' that includes multiple data types.

 

Note: 'Any' Type can only be applied and used in power query to do some other queries, when close power query, the data type of the column would be changed to Text. Power BI Table view does not allow multiple data types in one column at the same time.

 

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

smpa01
Super User
Super User

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45W0jVUitWJVgKSsQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", Int64.Type}}),
    #"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each if [Column1] < 0 then "N/A" else Text.From([Column1]))
in
    #"Added Custom"
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs
Anonymous
Not applicable

In the formula bar, type:

 

= Table.AddColumn(NameOfPriorStep, each if [Column A] < 0 then "N/A" else [Column A], type text)

 

--Nate

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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

Top Solution Authors