Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi all,
In my report I have table, which contain zero numbers of row.
How can I hide them. I dont wanna show "vendor #" row where "curr Yr Purchased $" and "Prior Yr Purchased $" equals $0.00
"curr Yr Purchased $" and "Prior Yr Purchased $" are measures.
help me resolve this problem.
Solved! Go to Solution.
Hide 0 = IF([curr Yr Purchased $] = 0 && [Prior Yr Purchased $] = 0, 1, 0)
Then put this column to your filters pane and uncheck 1. This must hide the 0 that you don't want to show.
Hide 0 = IF([curr Yr Purchased $] = 0 && [Prior Yr Purchased $] = 0, 1, 0)
Then put this column to your filters pane and uncheck 1. This must hide the 0 that you don't want to show.
Hi @Anonymous ,
On the "curr Yr Purchased $" and "Prior Yr Purchased $" measures you can make the following syntax.
curr Yr Purchased $ = IF(SUM(Table[Column] = 0 ; BLANK() ; SUM(Table[Column])
You should change the SUM(Table[Column]) by the syntax of your measure.
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsUser | Count |
---|---|
84 | |
80 | |
70 | |
47 | |
43 |
User | Count |
---|---|
108 | |
54 | |
50 | |
40 | |
40 |