Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have a table like below. I want to get the percentile of "Value". It equals to get the percentile of "1,1,1,1,1,2,2,2,3,3,3,3". But from the table, how can I make it?
Value Freq
1 | 5 |
2 | 3 |
3 | 4 |
Do you want to add up the values for each frequency, and then get the percent that total value is of the total for all the frequencies ?
Help when you know. Ask when you don't!
No, the purpose is to see the value number distribution.
Oh, I missed that.
This function could be used to get those results perhaps
REPT(<text>, <num_times>)
I'm a personal Power Bi Trainer I learn something every time I answer a question. I blog at http://powerbithehardparts.com/
The Golden Rules for Power BI
Help when you know. Ask when you don't!
REPT() only concatenate the string. For example REPT(1,5)=11111.
You can duplicate a column value and add a separator
if you do that in a calculated column you can use CONCATENATEX() to combine the values
Concatenates the result of an expression evaluated for each row in a table.
CONCATENATEX(<table>, <expression>, [delimiter])
table | The table containing the rows for which the expression will be evaluated. |
expression | The expression to be evaluated for each row of the table. |
delimiter | (optional) A separator to use during concatenation. |
A text string.
This function takes as its first argument a table or an expression that returns a table. The second argument is a column that contains the values you want to concatenate, or an expression that returns a value.
Employees table
Alan | Brewer |
Michael | Blythe |
CONCATENATEX(Employees, [FirstName] & “ “ & [LastName], “,”)
Returns "Alan Brewer, Michael Blythe"
as the example shows you can skip the first step of doing a column and do the REPT() as part of the CONCATENATEX() function.
Help when you know. Ask when you don't!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
77 | |
76 | |
57 | |
36 | |
34 |
User | Count |
---|---|
99 | |
56 | |
56 | |
46 | |
40 |