Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi All, It would be great if someone could help me. I need show the amount of new Ids which are generated / created after the StartDate of a selected date Range. so far I have done this but its not working :
Any help would be really appriiciated , thanks in advance.
Hi @TEACHY888 ,
Based on your description, I have created a simple sample:
Please try:
Measure =
var _a = MINX(ALLSELECTED(OpportunityOldValue_NewValue[Changed_Date]),[Changed_Date])
var _b = MAXX(ALLSELECTED(OpportunityOldValue_NewValue[Changed_Date]),[Changed_Date])
var _c = SELECTCOLUMNS(FILTER(ALL(OpportunityOldValue_NewValue),[Changed_Date]<_a),"ID",[Opportunity_SID])
var _d = FILTER(ALL(OpportunityOldValue_NewValue),[Changed_Date]>=_a&&[Changed_Date]<=_b&&NOT([Opportunity_SID] in _c))
return SUMX(_d,[Amount])
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |