Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
HI PBI community members,
I have a column titled "Month" that has the following values:
In Power Query, I would like to make a new column that returns the following: when Month column is March or June the new column value is -1; and when Month column is September or December new column value is 1.
This is to work around some calander year values and turn them into fiscal years.
Cheers,
Brent
Solved! Go to Solution.
Hi @Anonymous
Month column contains month only? if statement will work, here is one way
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45W8s3PK8lQitUBshKLkiEsr9K8VDAjOLWgJDU3KbUIzHNJTUZwfBMrlWJjAQ==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
#"Promoted Headers" = Table.PromoteHeaders(Source, [PromoteAllScalars=true]),
#"Changed Type" = Table.TransformColumnTypes(#"Promoted Headers",{{"Month", type text}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "newColumn", each if List.Contains({"March", "June"},[Month]) then -1
else if List.Contains({"September","December"},[Month]) then 1
else [Month])
in
#"Added Custom"
Hi @Anonymous
Month column contains month only? if statement will work, here is one way
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45W8s3PK8lQitUBshKLkiEsr9K8VDAjOLWgJDU3KbUIzHNJTUZwfBMrlWJjAQ==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
#"Promoted Headers" = Table.PromoteHeaders(Source, [PromoteAllScalars=true]),
#"Changed Type" = Table.TransformColumnTypes(#"Promoted Headers",{{"Month", type text}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "newColumn", each if List.Contains({"March", "June"},[Month]) then -1
else if List.Contains({"September","December"},[Month]) then 1
else [Month])
in
#"Added Custom"
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |