Forum Discussion
MickeLearnPBI
2 years agoHelper I
Ignore Slicer when using COUNTA
Hi!
I have created a report that is counting ongoing exections.
DAX expression that I use is this below, that counts the rows with a value of true, others are empty.
Ongoing = COUNTA(Executions[Ongoing]) +0 I also have a slicer where the report takes into account the year, which is a separate table = Calender [Year].
Can I somehow avoid the slicer for this count and count everything in the other table = Executions[Ongoing]?
MickeLearnPBI Try:
Ongoing = COUNTAX(ALL('Executions'), [Ongoing]) +0
1 Reply
- Greg_DecklerCommunity Champion
MickeLearnPBI Try:
Ongoing = COUNTAX(ALL('Executions'), [Ongoing]) +0