The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
8 | |
7 |