Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I have a problem when creating a table in Power BI where showing the ID of a client/user duplicates the rows and I need to show the "last row", the problem is that being a numeric column that option is not there.
I attach here how the repeat customer number looks.
And when you right-click to show the last row, you don't see that option:
Do you have any idea how to display the last or first row of a found value?
Solved! Go to Solution.
@lbendlin Thank you very much for your prompt reply.
For your question, here is the method I provided:
I noticed that the teamleader column and the reta_de_ventas column are changed in your data.
Therefore, I would suggest you to group the teamleader column according to it and sort the reta_de_ventas column to achieve displaying the last row of data.
Here's some dummy data
“Table”
Create measures.
Rank =
VAR _RANK =
RANKX(
FILTER(
ALL('Table'),
'Table'[teamleader] = MAX('Table'[teamleader])
),
CALCULATE(SELECTEDVALUE('Table'[reta_de_ventas])),,ASC,Dense
)
RETURN _RANK
Mark =
var _maxRank =
MAXX(
FILTER(
ALL('Table'),
'Table'[teamleader] = MAX('Table'[teamleader])
),
[Rank]
)
RETURN
IF(
[Rank] = _maxRank,
1,
0
)
Filter values with a "Mark" of 1.
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@lbendlin Thank you very much for your prompt reply.
For your question, here is the method I provided:
I noticed that the teamleader column and the reta_de_ventas column are changed in your data.
Therefore, I would suggest you to group the teamleader column according to it and sort the reta_de_ventas column to achieve displaying the last row of data.
Here's some dummy data
“Table”
Create measures.
Rank =
VAR _RANK =
RANKX(
FILTER(
ALL('Table'),
'Table'[teamleader] = MAX('Table'[teamleader])
),
CALCULATE(SELECTEDVALUE('Table'[reta_de_ventas])),,ASC,Dense
)
RETURN _RANK
Mark =
var _maxRank =
MAXX(
FILTER(
ALL('Table'),
'Table'[teamleader] = MAX('Table'[teamleader])
),
[Rank]
)
RETURN
IF(
[Rank] = _maxRank,
1,
0
)
Filter values with a "Mark" of 1.
Here is the result.
Regards,
Nono Chen
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Sort in the way you need it sorted and then do a DISTINCT on that column.
Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
Do not include sensitive information or anything not related to the issue or question.
If you are unsure how to upload data please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.
Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...
He won't let me make a DISTINCT in the column because he says he expected a column and I gave him several.
Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
Do not include sensitive information or anything not related to the issue or question.
If you are unsure how to upload data please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.
Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.