Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Seria ótimo se existisse a opção de substituir as células vazias de uma matriz pelo valor 0, pois muitas vezes quando uma matriz é alimentada por uma Query, algumas células ficam vazias e isso acaba gerando dúvidas nas pessoas que vizualizam o realtórios por não saberem do que se trata essas células vazias.
Hello,
Do you mean core Matrix visual of Power BI?
Could you please provide some screenshots to better understand your issue?
Kind Regards,
Evgenii Elkin,
Software Engineer
Microsoft Power BI Custom Visuals
pbicvsupport@microsoft.com
Esse é o resultado de minha matriz em que os dados estão vindo de uma consulta sql, após cruzar os dados os campos vazios não apresentam nenhum valor, assim como na imagem, o meu desejo é que ao invès do campo ficar vazio, apresentace valor 0 de forma automática.
Ok, got it!
I will ask an appropriate team for comments and provide answer here as son as I receive it.
Kind Regards,
Evgenii Elkin,
Software Engineer
Microsoft Power BI Custom Visuals
pbicvsupport@microsoft.com
The feature is in a visual backlog but there isn't any ETA regarding when it will be implemented.
However, there is a following workaround that was provided by developers:
"The most common workaround is to update your measure to avoid blanks or create a new calc column that turns blanks into zero.
https://community.powerbi.com/t5/Desktop/show-items-with-no-data-as-0-instead-of-blanks/td-p/113160
New column:
MeasureNoBlanks = IF ( CALCULATE ( SUM ( Expenses[Actual] ) ) = BLANK (), 0, CALCULATE ( SUM ( Expenses[Actual] ) ) )
Updated Measure (+ 0):
Measure = CALCULATE ( SUM (table[column] ), FILTER (... ) ) + 0
"
I hope, that it will help.
Kind Regards,
Evgenii Elkin,
Software Engineer
Microsoft Power BI Custom Visuals
pbicvsupport@microsoft.com