Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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
Solved! Go to Solution.
In the formula bar, type:
= Table.AddColumn(NameOfPriorStep, each if [Column A] < 0 then "N/A" else [Column A], type text)
--Nate
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.
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"
In the formula bar, type:
= Table.AddColumn(NameOfPriorStep, each if [Column A] < 0 then "N/A" else [Column A], type text)
--Nate
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 4 | |
| 4 |