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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

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
Community Champion
Community Champion

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: Live Sound
• Beautiful News: Women in Parliament, Energy Mix, Shrinking Armies
• Visual Capitalist: Working Hrs
• Others: Easing Graph, Animated Calendar
MayViz Submissions
• Week 1: View
• Week 2: View
• Week 3: View
• Week 4: View
========================
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
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.