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.
Hello, I managed to solve a problem using the ALLSELECTED() function, but now the array has a lot of blank lines, how can I remove it?
By the filters I can't, since if I filter a column it excludes the value of the others.
Solved! Go to Solution.
Hi,
Could you please try the below whether it suits your requirement?
Fluxo =
IF (
[Total a receber measure] <> BLANK ()
&& [Tltal a pagar measure] <> BLANK (),
CALCULATE (
[Total Fluxo] + [Total Saldo Bancário],
FILTER (
ALLSELECTED ( 'D-Pagar + Receber' ),
'D-Pagar + Receber'[Data] <= MAX ( 'BA-Data'[Data_Base] )
)
)
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
Hi,
Could you please try the below whether it suits your requirement?
Fluxo =
IF (
[Total a receber measure] <> BLANK ()
&& [Tltal a pagar measure] <> BLANK (),
CALCULATE (
[Total Fluxo] + [Total Saldo Bancário],
FILTER (
ALLSELECTED ( 'D-Pagar + Receber' ),
'D-Pagar + Receber'[Data] <= MAX ( 'BA-Data'[Data_Base] )
)
)
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Schedule a short Teams meeting to discuss your question
Thanks for your @Jihwan_Kim solution.
I just needed to change the "&&" operator to "||" and it worked perfectly.
Thanks a lot for the solution.
Hi, @Shaurya
These blank values are traditional when I use ALLSELECTED(), the filter needs to be applied within the measure itself to work. I've tried to use all the filters, I only have the measure, but I'm not getting it.
Hi @Anonymous,
Why don't you try using the filters? Select all values first and just uncheck Blank.
Works for you? Mark this post as a solution if it does!
User | Count |
---|---|
17 | |
14 | |
13 | |
13 | |
11 |
User | Count |
---|---|
19 | |
15 | |
15 | |
11 | |
10 |