Hello, I'm Carlos,
We're a new Power BI user and we have a doubt:
We have a database table that we load in POWER BI. The database table follows this structure and information:
ID_News | Section | Issue | Calculate_economic_value |
1 | Press | Sports | 1670 |
1 | Press | Culture | 1670 |
2 | OnLine | Sports | 300 |
We do a pivot table in Power BI with the last database table. We get this results:
Section | SUM(Calculate_economica_value) |
Press | (1670+1670)=3340 |
OnLine | 300 |
This results aren't good for us. We'd like to do a SUM DISTINCT by ID_Noticia. The correct results are:
Section | SUM(Valor_Pub_Calculado) |
Press | 1670 |
OnLine | 300 |
Is it possible?
Thank you for your help.
Carlos