Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi,
We are trying to put together a report in Power BI Desktop using data from SQL Server, we are having issues with duplicate values.
The above screenshot shows the problem, we have a job with the same order number where multiple tasks have been completed but one overall price. what we need to achieve is something like the below.
Essentially, we need to see the cost only once for each job number.
Any help on how we could achieve this would be appreciated.
Solved! Go to Solution.
Hi @Akers ,
For your scenario, you may could try to create a calculated table with SUMMARIZE to achieve that. Please refer to the formula below.
table= summarize('table name',"order numer","jobDate",...)
If you still need help, please share some data sample with table format and your desired output so that people could make a copy and have test.
Best Regards,
Cherry
Give this a try
Descriptions = IF ( ISINSCOPE ( Ordernumber ), CONCATENATEX ( Table, Table[Job Description],", ")
You will need to replace the "Table" with whatever your table name is. The ISINSCOPE keeps the string from building on total rows.
Hi @Akers ,
Have you solved your problem?
If you have solved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
If you still need help, please share your data sample with table format and your desired output so that we could copy and test on it.
Best Regards,
Cherry
Give this a try
Descriptions = IF ( ISINSCOPE ( Ordernumber ), CONCATENATEX ( Table, Table[Job Description],", ")
You will need to replace the "Table" with whatever your table name is. The ISINSCOPE keeps the string from building on total rows.
Hi @Akers ,
For your scenario, you may could try to create a calculated table with SUMMARIZE to achieve that. Please refer to the formula below.
table= summarize('table name',"order numer","jobDate",...)
If you still need help, please share some data sample with table format and your desired output so that people could make a copy and have test.
Best Regards,
Cherry
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
| User | Count |
|---|---|
| 50 | |
| 43 | |
| 36 | |
| 33 | |
| 30 |
| User | Count |
|---|---|
| 138 | |
| 125 | |
| 60 | |
| 59 | |
| 56 |