Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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]?
Solved! Go to Solution.
@MickeLearnPBI Try:
Ongoing = COUNTAX(ALL('Executions'), [Ongoing]) +0
@MickeLearnPBI Try:
Ongoing = COUNTAX(ALL('Executions'), [Ongoing]) +0
User | Count |
---|---|
22 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |