Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
This is the filter that I have.
This is my Chart.
I just want to get the Aggregated Total of all the Opportunity even when it has no filter or there's a filter.
I have done tying this Measures that came from this community, but still no luck.
Running Total Opps Generated =
CALCULATE (
COUNTROWS(
FILTER(Opportunities,
Opportunities[Current Stage] <> "Marketing Qualified Lead" &&
Opportunities[Current Stage] <> "Marketing Qualified Lead 10%" &&
Opportunities[Current Stage] <> "MQL 10%" &&
Opportunities[Current Stage] <> "Qualified Lead 10%" &&
Opportunities[Status] = "Open" &&
Opportunities[ISM Contribution] = "Marketing Generated"
)
),
FILTER (
ALL('Calendar'[Date]),
ISONORAFTER('Calendar'[Date], MAX ('Calendar'[Date]),DESC
)
), USERELATIONSHIP('Calendar'[Date], Opportunities[Date Created])
)Running Total Opps Generated =
CALCULATE (
COUNTROWS(
FILTER(Opportunities,
Opportunities[Current Stage] <> "Marketing Qualified Lead" &&
Opportunities[Current Stage] <> "Marketing Qualified Lead 10%" &&
Opportunities[Current Stage] <> "MQL 10%" &&
Opportunities[Current Stage] <> "Qualified Lead 10%" &&
Opportunities[Status] = "Open" &&
Opportunities[ISM Contribution] = "Marketing Generated"
)
),
FILTER (
ALL(Opportunity),
(Opportunity[Date Created]<= MAX(Opportunity[Date Created])
)
), USERELATIONSHIP('Calendar'[Date], Opportunities[Date Created])
)
Any thoughts or workaround about this?
Help would be greatly appreciated.
Thank you so much!
@amitchandak @parry2k @PhilipTreacy
Solved! Go to Solution.
Hi @Anonymous ,
Please check if this is what you want:
Measure =
CALCULATE (
COUNTROWS ( 'Table' ),
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Month] <= MAX ( 'Calendar'[Month] ) )
)
Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.
Hello @amitchandak this is the sample data.
In Oct 2020 there is 1 row.
In Nov 2020 there is 2 row.
In Dec 2020 there is 2 row.
In Jan 2021 there is 1 row.
I want to show this kind of Chart that is responsive using a slicer.
Thank you.
Hi @Anonymous ,
Please check if this is what you want:
Measure =
CALCULATE (
COUNTROWS ( 'Table' ),
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Month] <= MAX ( 'Calendar'[Month] ) )
)
Best regards
Icey
If this post helps, then consider Accepting it as the solution to help other members find it faster.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 71 | |
| 50 | |
| 47 | |
| 44 |