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
adni85
Regular Visitor

Replace N/A value with non-null value in same column

Hi

I am quite new to the power BI world and stuck with this issue.

20220114_155144.jpg

 

So as shown in table below, I have few N/A values in 'City' column. I want to replace N/A with the value based on the customer column.

 

Like, if customer 'EFG' is shown Toronto in above or below cell than the 'N/A' could replaced with Toronto and in the case of customer 'ABC' N/A to be replaced with Vancouver.

 

TIA

1 ACCEPTED SOLUTION
v-eqin-msft
Community Support
Community Support

Hi @adni85 ,

 

Below is the full M syntax that you could paste in Advanced Editor:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WcnRyVtJRMtQ31DcyMDICMsMS85LzS8tSi5RidaKVXN3cUaVD8ovy80rywZIRkVGokn6p5ZX5RdkoOo3gkvqOKBLG2IyEOccYXRfMLmNsdgWGu2LXBZMwgUk4pWZmZealK8XGAgA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Customer = _t, Dates = _t, City = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Customer", type text}, {"Dates", type date}, {"City", type text}}),
    #"Replaced Value" = Table.ReplaceValue(#"Changed Type","N/A",null,Replacer.ReplaceValue,{"City"}),
    #"Sorted Rows" = Table.Sort(#"Replaced Value",{{"City", Order.Descending}}),
    #"Group" = Table.Group(#"Sorted Rows", {"Customer"}, {{"All_Rows", each Table.FillDown(_,{"City"}), type table}}),     
    #"Expanded All_Rows" = Table.ExpandTableColumn(Group, "All_Rows", {"Dates", "City"}, {"Dates", "City"}),
    #"Changed Type1" = Table.TransformColumnTypes(#"Expanded All_Rows",{{"Dates", type date}})
in
    #"Changed Type1"

 

Eyelyn9_1-1642486870493.png

 

 

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-eqin-msft
Community Support
Community Support

Hi @adni85 ,

 

Below is the full M syntax that you could paste in Advanced Editor:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WcnRyVtJRMtQ31DcyMDICMsMS85LzS8tSi5RidaKVXN3cUaVD8ovy80rywZIRkVGokn6p5ZX5RdkoOo3gkvqOKBLG2IyEOccYXRfMLmNsdgWGu2LXBZMwgUk4pWZmZealK8XGAgA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Customer = _t, Dates = _t, City = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Customer", type text}, {"Dates", type date}, {"City", type text}}),
    #"Replaced Value" = Table.ReplaceValue(#"Changed Type","N/A",null,Replacer.ReplaceValue,{"City"}),
    #"Sorted Rows" = Table.Sort(#"Replaced Value",{{"City", Order.Descending}}),
    #"Group" = Table.Group(#"Sorted Rows", {"Customer"}, {{"All_Rows", each Table.FillDown(_,{"City"}), type table}}),     
    #"Expanded All_Rows" = Table.ExpandTableColumn(Group, "All_Rows", {"Dates", "City"}, {"Dates", "City"}),
    #"Changed Type1" = Table.TransformColumnTypes(#"Expanded All_Rows",{{"Dates", type date}})
in
    #"Changed Type1"

 

Eyelyn9_1-1642486870493.png

 

 

Best Regards,
Eyelyn Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

AlexisOlson
Super User
Super User

Is a Customer always associated with only a single City? If not, how do you choose which city to replace N/A with?

Yes in this case customer is associated to one particular city.

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
Top Kudoed Authors