Forum Discussion
lpearce
Jun 21, 2023Copper Contributor
Help with SQL when running Power BI
Good morning, I am running a refresh for power BI , however the refresh falls over with the following error. Column 'Account' in Table 'Forecasting' contains a duplicate value 'BRC001' and this...
DuersinKurt
Jun 26, 2023Copper Contributor
Hi lpearce,
you can not just "force SQL Server" to combine those rows. There are too many questions, before you could have a fitting answer for your case. Nontheless I will try to give some hints:
- you can use a group by in your query that grabs the data from the SQL Server to your Power BI model
- change the realationship in your Power BI model to not use this column, but another one, that is unique, if possible
- Generate a relation table between the two tables in your Power BI model, where this specific value is unique, and activate cross filtering
- for a quick fix you could try to change the Power BI model relationship between those tables to many to many (caution, this implies a different behaveiour of the model, than you may expect)
All hints to take with a grain of salt. Ideally #2 is a valid option for you, and you've "just" used the wrong column in your relationship.