Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. 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!
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
74 | |
69 | |
69 | |
45 | |
41 |
User | Count |
---|---|
54 | |
48 | |
33 | |
32 | |
28 |