March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
i have the following data
Fisrt name | last name | degree | payment | ID | |
jack | Eden | Eden exapmle.com | bachelor | 250$ | 2160003021 |
lora | Teigen | Teigen example.com | bachelor | 340 | 3160003021 |
jousef | Hawke | Hawke example.com | bachelor | 100 | 4160003021 |
jack | Eden | Eden1exapmle.com | bachelor | 500$ | 5160003021 |
and i want a bar graph to show me how much each one takes based in ids
y-axis : first name
x-axis: sum of payment
i wrote the following code but it mixes the jacks and i need uniqe jack only
Solved! Go to Solution.
@mina97 , I now get what you wanted in your code.
So, create a calculated column in your table:
name unique =
VAR same_names =
CALCULATETABLE (
SUMMARIZE ( Specialists, Specialists[ID], Specialists[First_Name] ),
ALLEXCEPT ( Specialists, Specialists[First_Name] )
)
VAR ranking = RANKX ( same_names, Specialists[ID],, ASC, DENSE )
VAR blanks = REPT ( UNICHAR ( 8204 ), ranking - 1 )
VAR res = Specialists[First_Name] & blanks
RETURN
res
And use this column for the x-axis of your visual:
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
@mina97 , I now get what you wanted in your code.
So, create a calculated column in your table:
name unique =
VAR same_names =
CALCULATETABLE (
SUMMARIZE ( Specialists, Specialists[ID], Specialists[First_Name] ),
ALLEXCEPT ( Specialists, Specialists[First_Name] )
)
VAR ranking = RANKX ( same_names, Specialists[ID],, ASC, DENSE )
VAR blanks = REPT ( UNICHAR ( 8204 ), ranking - 1 )
VAR res = Specialists[First_Name] & blanks
RETURN
res
And use this column for the x-axis of your visual:
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
hi please i need extra help i reallt appreciate it
how can i assign uniqe ID to the most frequent first name
because i have a lot of misspelled names and i want to unifiedthem
i have the following data
Fisrt name | last name | degree | payment | ID | |
jack | Eden | Eden exapmle.com | bachelor | 250$ | 2160003021 |
lora | Teigen | Teigen example.com | bachelor | 340 | 3160003021 |
jack | Edin | Eden1exapmle.com | bachelor | 600$ | 5160003021 |
jack | Eden | Eden1exapmle.com | bachelor | 500$ | 5160003021 |
IT WORKS perfectly THANK YOU SO MUCH!!!! you are a lifesaver
@mina97 , you already have a unique field - ID. Can you use it in the visual?
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.
Check out my latest demo report in the data story gallery.
Stand with Ukraine!
Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/
Thank you!
please find a way to show my results based on id with out showing id on graph
unfortunately no i can not show id in graph 😞 that is why i need help with this
hi @SamInogic i appreciate your help
but jack who's id is 2160003021 had 2 payemnts 250$ and 600$ as 2 seperated rows but identical columns inputs except for payment column
and i need the graph to show that this jack got 850$ as a total payment hence, the index method is not useful in this case.
please help me and Thank you for your response
Hi @mina97 ,
Instead of custom column with DAX expression, you can try creating Index column within Power Query in order generate the unique numbers,
Then you can design chart with below specifications,
Thanks!
Inogic Professional Services Division
Power Platform and Microsoft Dynamics 365 CRM Development – All under one roof!
Drop an email at crm@inogic.com
Services: http://www.inogic.com/services/
Power Platform/Dynamics 365 CRM Tips and Tricks: http://www.inogic.com/blog/
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
18 | |
16 | |
13 |