Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
good evening . I need to create a new column that tells me the number of greens that repeats the number 30 for example.
Example: the first record is repeated 4 times the value 30. I need that 4 in a new column
Add a new column in Power Query:
List.Count (Text.PositionOf ([total_sizes],"30",Occurrence.All))
@Ozymandi4s , One of the way is count is
New column in power query
List.Count(Text.Split([Column], ",")) +1
Once you so Text.Split, you can do other List operations too
https://docs.microsoft.com/en-us/powerquery-m/list-functions
I need a way to count without adding columns
@Ozymandi4s , one of the best way is to split this column into rows, but that will increase the size of the table
https://www.tutorialgateway.org/how-to-split-columns-in-power-bi/
I need a way to count without adding columns
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.