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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Add column with sepecific cell value

I want create new column A16_2 base on value of first row A16 which use flexible way:

IndexA16A16_2
035003500
1null3500
2null3500

I use Custom function from Edit Query in Excel.

I try some way like that:

  1. if [A16] = null then [A16]{0} else [A16]
  2. List.Average([A16])

But It NOT WORK. Could someone guide me how to create new column base on specificed value of 1 column?

1 ACCEPTED SOLUTION
Vera_33
Resident Rockstar
Resident Rockstar

Hi @Anonymous 

 

When you call [A16], it is not a list, so what is your logic?

Vera_33_0-1641374967120.png

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlDSUTI2NTBQitWJVjIEcvJKc3LAHCM4JxYA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Index = _t, A16 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Index", Int64.Type}, {"A16", Int64.Type}}),
    #"Added Custom" = Table.AddColumn(#"Changed Type", "yourNewColumn", each if [A16]=null then #"Changed Type"[A16]{0} else [A16]),
    #"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom", each List.Average(#"Added Custom"[A16]))
in
    #"Added Custom1"

 

View solution in original post

1 REPLY 1
Vera_33
Resident Rockstar
Resident Rockstar

Hi @Anonymous 

 

When you call [A16], it is not a list, so what is your logic?

Vera_33_0-1641374967120.png

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlDSUTI2NTBQitWJVjIEcvJKc3LAHCM4JxYA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Index = _t, A16 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Index", Int64.Type}, {"A16", Int64.Type}}),
    #"Added Custom" = Table.AddColumn(#"Changed Type", "yourNewColumn", each if [A16]=null then #"Changed Type"[A16]{0} else [A16]),
    #"Added Custom1" = Table.AddColumn(#"Added Custom", "Custom", each List.Average(#"Added Custom"[A16]))
in
    #"Added Custom1"

 

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors
Top Kudoed Authors