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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
prashantg364
Helper II
Helper II

cutom column

I want to add a custom column in the power query editor to get output for the count of rows of the "Text" column.

Example as shown below... 

 

TextCustom column
AAACCC3
AAACCC3
AAACCC3
AAMTHN2
AAMTHN2
AATSSH1
AATSYC1
AAYSDN2
AAYSDN2
3 REPLIES 3
Vijay_A_Verma
Super User
Super User

You can use this

= List.Count(List.Select(List.Buffer(Source[Text]), (x)=>x=[Text]))

Thanks, it works for me.

Hi, @Vijay_A_Verma x =[Text] is not going to work. Imho better idea is to add one extra step to buffer Source[Text] first and then (in the scope of Table.AddColumn function) this should look like this

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WcnR0dHZ2VorVwc30DfHww2SGBAd7wJmRMLWRwS5+KMxYAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Text = _t]),
    text_column = List.Buffer(Source[Text]),
    f = 
        Table.AddColumn(
            Source, 
            "Custom Column",
            each List.Count(List.Select(text_column, (x)=>x=[Text]))
        )
in
    f

 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Top Solution Authors